Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ base ] Implement a bunch of standard interfaces for Data.These #3117

Merged
merged 2 commits into from
Oct 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,8 @@

* Adds a `Compose` and `FromApplicative` named implementations for `Zippable`.

* Adds `Semigroup`, `Applicative`, `Traversable` and `Zippable` for `Data.These`.

#### System

* Changes `getNProcessors` to return the number of online processors rather than
Expand Down
80 changes: 80 additions & 0 deletions libs/base/Data/These.idr
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ module Data.These

import Control.Function

import Data.Zippable

%default total

public export
Expand All @@ -23,12 +25,24 @@ fromThat (This _) = Nothing
fromThat (That b) = Just b
fromThat (Both _ b) = Just b

public export
fromBoth : (defaultL : Lazy a) -> (defaultR : Lazy b) -> These a b -> (a, b)
fromBoth _ y (This x) = (x, y)
fromBoth x _ (That y) = (x, y)
fromBoth _ _ (Both x y) = (x, y)

public export
these : (a -> c) -> (b -> c) -> (a -> b -> c) -> These a b -> c
these l r lr (This a) = l a
these l r lr (That b) = r b
these l r lr (Both a b) = lr a b

public export
these' : (defualtL : Lazy a) -> (defaultR : Lazy b) -> (a -> b -> c) -> These a b -> c
these' _ y f (This x) = f x y
these' x _ f (That y) = f x y
these' _ _ f (Both x y) = f x y

public export
swap : These a b -> These b a
swap (This a) = That a
Expand Down Expand Up @@ -68,6 +82,20 @@ Eq a => Eq b => Eq (These a b) where
Both x y == Both x' y' = x == x' && y == y'
_ == _ = False

public export
Semigroup a => Semigroup b => Semigroup (These a b) where
This x <+> This x' = This $ x <+> x'
This x <+> That y = Both x y
This x <+> Both x' y = Both (x <+> x') y

That y <+> This x = Both x y
That y <+> That y' = That $ y <+> y'
That y <+> Both x y' = Both x $ y <+> y'

Both x y <+> This x' = Both (x <+> x') y
Both x y <+> That y' = Both x (y <+> y')
Both x y <+> Both x' y' = Both (x <+> x') (y <+> y')

%inline
public export
Bifunctor These where
Expand Down Expand Up @@ -105,3 +133,55 @@ bifold : Semigroup m => These m m -> m
bifold (This a) = a
bifold (That b) = b
bifold (Both a b) = a <+> b

||| A right-biased applicative implementation that combines lefts with a semigroup operation
|||
||| This implementation does its best to not to lose any data from the original arguments.
public export
Semigroup a => Applicative (These a) where
pure = That

This e <*> That _ = This e
This e <*> This e' = This $ e <+> e'
This e <*> Both e' _ = This $ e <+> e'

That f <*> That x = That $ f x
That f <*> This e = This e
That f <*> Both e x = Both e $ f x

Both e _ <*> This e' = This $ e <+> e'
Both e f <*> That x = Both e $ f x
Both e f <*> Both e' x = Both (e <+> e') $ f x

public export
Foldable (These a) where
foldr _ init $ This _ = init
foldr op init $ That x = x `op` init
foldr op init $ Both _ x = x `op` init

foldl _ init $ This _ = init
foldl op init $ That x = init `op` x
foldl op init $ Both _ x = init `op` x

null $ This _ = True
null $ That _ = False
null $ Both _ _ = False

public export
Traversable (These a) where
traverse _ $ This e = pure $ This e
traverse f $ That x = That <$> f x
traverse f $ Both x y = Both x <$> f y

public export
Semigroup a => Zippable (These a) where
zipWith f x y = [| f x y |]
zipWith3 f x y z = [| f x y z |]

unzipWith f (This x) = (This x, This x)
unzipWith f (That x) = let (u, v) = f x in (That u, That v)
unzipWith f (Both x y) = let (u, v) = f y in (Both x u, Both x v)

unzipWith3 f (This x) = (This x, This x, This x)
unzipWith3 f (That x) = let (u, v, w) = f x in (That u, That v, That w)
unzipWith3 f (Both x y) = let (u, v, w) = f y in (Both x u, Both x v, Both x w)
Loading