Hoogle Search
Within LTS Haskell 24.51 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
type family (l :: Row k)
.// (r :: Row k) :: Row krow-types Data.Row.Records The overwriting union, where the left row overwrites the types of the right row where the labels overlap.
(
.// ) :: forall (r :: Row Type) (r' :: Row Type) . Rec r -> Rec r' -> Rec (r .// r')row-types Data.Row.Records Record overwrite. The operation r .// r' creates a new record such that:
- Any label that is in both r and r' is in the resulting record with the type and value given by the fields in r,
- Any label that is only found in r is in the resulting record.
- Any label that is only found in r' is in the resulting record.
(
.== ) :: forall (l :: Symbol) a . KnownSymbol l => Label l -> a -> Rec (l .== a)row-types Data.Row.Records The singleton record
type family (r :: Row k)
.\ (l :: Symbol)row-types Data.Row.Records Does the row lack (i.e. it does not have) the specified label?
type family (r :: Row k)
.! (t :: Symbol) :: krow-types Data.Row.Variants Type level label fetching
type family (l :: Row k)
.+ (r :: Row k) :: Row krow-types Data.Row.Variants Type level Row append
type family (r :: Row k)
.- (s :: Symbol) :: Row krow-types Data.Row.Variants Type level Row element removal
type family (r :: Row k)
.\ (l :: Symbol)row-types Data.Row.Variants Does the row lack (i.e. it does not have) the specified label?
type family (l :: Row k)
.\/ (r :: Row k) :: Row krow-types Data.Row.Variants The minimum join of the two rows.
type family (l :: Row k)
.\\ (r :: Row k) :: Row krow-types Data.Row.Variants Type level Row difference. That is, l .\\ r is the row remaining after removing any matching elements of r from l.