Hoogle Search
Within LTS Haskell 24.25 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
language-lua Language.Lua.Annotated.Syntax No documentation available.
-
language-lua Language.Lua.Syntax No documentation available.
-
protobuf-simple Data.ProtoBufInt No documentation available.
module Rattletrap.Type.Property.
Bool No documentation available.
-
rattletrap Rattletrap.Type.Property.Bool No documentation available.
-
rattletrap Rattletrap.Type.Property.Bool No documentation available.
Bool :: Bool -> PropertyValue arattletrap Rattletrap.Type.PropertyValue No documentation available.
-
The type RBool is like Bool, but allows recursive definitions:
>>> :{ let x = RB.true y = x RB.&& z z = y RB.|| RB.false in RB.get x :} TrueThis finds the least solution, i.e. prefers False over True:>>> :{ let x = x RB.&& y y = y RB.&& x in (RB.get x, RB.get y) :} (False,False)Use RDualBool from Data.Recursive.DualBool if you want the greatest solution. -
safe-json Data.Aeson.Safe No documentation available.
-
tomland Toml.Type.Value Boolean value:
bool1 = true bool2 = false