Hoogle Search
Within LTS Haskell 24.36 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
just :: forall (m :: Type -> Type) a . Monad m => Predicate m a -> Predicate m (Maybe a)skeletest Skeletest.Internal.Predicate A predicate checking if the input is Just, wrapping a value matching the given predicate.
>>> Just 1 `shouldSatisfy` P.just (P.gt 0)
just :: forall (m :: Type -> Type) a . Monad m => Predicate m a -> Predicate m (Maybe a)skeletest Skeletest.Predicate A predicate checking if the input is Just, wrapping a value matching the given predicate.
>>> Just 1 `shouldSatisfy` P.just (P.gt 0)
-
express Data.Express.Fixtures The Just constructor lifted over the Expr type. This works for the Bool, Int, Char argument types and their lists.
> just zero Just 0 :: Maybe Int > just false Just False :: Maybe Bool
-
chell Test.Chell Assert that some value is Just.
just :: (Applicative f, Traversable g) => AdapterLike f g (Maybe a) (Maybe b) a blens-family-core Lens.Family.Stock just :: Prism (Maybe a) (Maybe b) a b
A prism on the Just element of a Maybe.just :: ProjectableMaybe p => p a -> p (Maybe a)relational-query Database.Relational.Arrow Cast record phantom type into Maybe.
just :: ProjectableMaybe p => p a -> p (Maybe a)relational-query Database.Relational.Projectable Cast record phantom type into Maybe.
just :: Record c r -> Record c (Maybe r)relational-query Database.Relational.Record Cast into Maybe on record phantom type.
-
code-conjure Conjure.Engine The Just constructor lifted over the Expr type. This works for the Bool, Int, Char argument types and their lists.
> just zero Just 0 :: Maybe Int > just false Just False :: Maybe Bool
-
code-conjure Conjure.Expr The Just constructor lifted over the Expr type. This works for the Bool, Int, Char argument types and their lists.
> just zero Just 0 :: Maybe Int > just false Just False :: Maybe Bool