Hoogle Search

Within LTS Haskell 24.34 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. setContents :: MonadIO m => Knob -> ByteString -> m ()

    knob Data.Knob

    No documentation available.

  2. setElem :: forall (i :: Nat) (j :: Nat) (m :: Nat) (n :: Nat) a . (KnownNat i, KnownNat j, 1 <= i, i <= m, 1 <= j, j <= n) => a -> Matrix m n a -> Matrix m n a

    matrix-static Data.Matrix.Static

    Replace the value of a cell in a matrix. The position to be replaced is given by TypeLevel Nats. To use this, use -XDataKinds and -XTypeApplications. Example: setElem 1 2 0 (1 2 3) = (1 0 3)

  3. setSize :: forall (newM :: Nat) (newN :: Nat) (m :: Nat) (n :: Nat) a . (KnownNat newM, KnownNat newN, 1 <= newM, 1 <= newN) => a -> Matrix m n a -> Matrix newM newN a

    matrix-static Data.Matrix.Static

    Set the size of a matrix to given parameters. Use a default element for undefined entries if the matrix has been extended.

  4. setupClientQuery :: forall record sid a (m :: Type -> Type) . (PersistEntityBackend record ~ SqlBackend, ToBackendKey SqlBackend record, SafeToInsert record, MonadIO m) => (a -> record) -> (sid -> Timed a -> record) -> (sid -> Timed a -> record) -> (sid -> ServerTime -> record) -> ClientStore (Key record) sid a -> SqlPersistT m ()

    mergeful-persistent Data.Mergeful.Persistent

    Set up a client store. You shouldn't need this.

  5. setupServerQuery :: forall sid record a . (PersistEntity record, PersistEntityBackend record ~ SqlBackend) => (sid -> Timed a -> Entity record) -> ServerStore sid a -> SqlPersistT IO ()

    mergeful-persistent Data.Mergeful.Persistent

    Set up the server store You shouldn't need this.

  6. setupClientQuery :: forall clientRecord (m :: Type -> Type) a sid . (PersistEntity clientRecord, PersistEntityBackend clientRecord ~ SqlBackend, SafeToInsert clientRecord, MonadIO m) => (a -> clientRecord) -> (sid -> a -> clientRecord) -> (sid -> clientRecord) -> ClientStore (Key clientRecord) sid a -> SqlPersistT m ()

    mergeless-persistent Data.Mergeless.Persistent

    Setup a client store You shouldn't need this.

  7. setupServerQuery :: forall record (m :: Type -> Type) a . (PersistEntity record, PersistEntityBackend record ~ SqlBackend, MonadIO m) => (a -> record) -> ServerStore (Key record) a -> SqlPersistT m ()

    mergeless-persistent Data.Mergeless.Persistent

    Set up a server store in the database. You shouldn't need this. This uses insertKey function and is therefore unsafe.

  8. setupUnsyncedClientQuery :: forall clientRecord (m :: Type -> Type) a . (PersistEntity clientRecord, PersistEntityBackend clientRecord ~ SqlBackend, SafeToInsert clientRecord, MonadIO m) => (a -> clientRecord) -> [a] -> SqlPersistT m ()

    mergeless-persistent Data.Mergeless.Persistent

    Setup an unsynced client store You shouldn't need this.

  9. setBackendSpecificForeignKeyName :: (EntityNameDB -> FieldNameDB -> ConstraintNameDB) -> BackendSpecificOverrides -> BackendSpecificOverrides

    persistent-mtl Database.Persist.Sql.Shim

    Set the backend's foreign key generation function to this value.

  10. setEntityDBName :: EntityNameDB -> EntityDef -> EntityDef

    persistent-mtl Database.Persist.Sql.Shim

    No documentation available.

Page 65 of many | Previous | Next