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.
-
graphql Language.GraphQL.Execute.OrderedMap Traverse over the elements and collect the Just results.
arbitraryMaybe :: Gen a -> Gen (Maybe a)haskoin-core Haskoin.Util.Arbitrary.Util Generate a Maybe from a Gen a
eitherToMaybe :: Either a b -> Maybe bhaskoin-core Haskoin.Util.Helpers Transform an Either value into a Maybe value. Right is mapped to Just and Left is mapped to Nothing. The value inside Left is lost.
getMaybe :: MonadGet m => m a -> m (Maybe a)haskoin-core Haskoin.Util.Helpers No documentation available.
liftMaybe :: forall (m :: Type -> Type) b a . Monad m => b -> Maybe a -> ExceptT b m ahaskoin-core Haskoin.Util.Helpers putMaybe :: MonadPut m => (a -> m ()) -> Maybe a -> m ()haskoin-core Haskoin.Util.Helpers No documentation available.
untilMaybe :: Monad m => (a -> Maybe b) -> m a -> m bhosc Sound.Osc.Wait Repeat action until f does not give Nothing when applied to result.
sqlAddValidCheckMaybeDowntime :: Check -> RawSQL ()hpqtypes-extras Database.PostgreSQL.PQTypes.Model.Check Add valid check constraint. Warning: PostgreSQL acquires SHARE ROW EXCLUSIVE lock (that prevents updates) on modified table for the duration of the creation. If this is not acceptable, use sqlAddNotValidCheck and sqlValidateCheck.
sqlAddValidFKMaybeDowntime :: RawSQL () -> ForeignKey -> RawSQL ()hpqtypes-extras Database.PostgreSQL.PQTypes.Model.ForeignKey Add valid foreign key. Warning: PostgreSQL acquires SHARE ROW EXCLUSIVE lock (that prevents data updates) on both modified and referenced table for the duration of the creation. If this is not acceptable, use sqlAddNotValidFK and sqlValidateFK.
sqlCreateIndexMaybeDowntime :: RawSQL () -> TableIndex -> RawSQL ()hpqtypes-extras Database.PostgreSQL.PQTypes.Model.Index Create an index. Warning: if the affected table is large, this will prevent the table from being modified during the creation. If this is not acceptable, use CreateIndexConcurrentlyMigration. See https://www.postgresql.org/docs/current/sql-createindex.html for more information.