Hoogle Search
Within LTS Haskell 24.38 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
bv Data.BitVector Left shift.
-
bv Data.BitVector Rotate left.
-
bv Data.BitVector Fixed-size less-than-or-equals.
-
bv Data.BitVector Fixed-size equality. In contrast with ==, which is size-polymorphic, this equality requires both bit-vectors to be of equal size.
>>> [n]k ==. [m]k False
>>> [n]k ==. [n]k True
-
bv Data.BitVector Fixed-size greater-than.
-
bv Data.BitVector Fixed-size greater-than-or-equals.
-
bv Data.BitVector Logical right shift.
-
bv Data.BitVector Rotate right.
(
@. ) :: Integral ix => BV -> ix -> Boolbv Data.BitVector Bit indexing. u @. i stands for the i-th bit of u.
>>> [4]2 @. 0 False
>>> [4]2 @. 1 True
(
!=. ) :: forall v typ . PersistField typ => EntityField v typ -> typ -> Filter vclassy-prelude-yesod ClassyPrelude.Yesod Non-equality check.
Examples
selectSimon :: MonadIO m => ReaderT SqlBackend m [Entity User] selectSimon = selectList [UserName !=. "SPJ" ] []
The above query when applied on dataset-1, will produce this:+-----+-----+-----+ |id |name |age | +-----+-----+-----+ |2 |Simon|41 | +-----+-----+-----+