Hoogle Search

Within LTS Haskell 24.48 (ghc-9.10.3)

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

  1. formErrorMesage :: FormException -> String

    aws Aws.Core

    No documentation available.

  2. formatPermissions :: [(Text, SqsPermission)] -> [QueryItem]

    aws Aws.Sqs.Commands.Permission

    No documentation available.

  3. formatAttributes :: [QueueAttribute] -> [(ByteString, Maybe ByteString)]

    aws Aws.Sqs.Commands.QueueAttributes

    No documentation available.

  4. formatBoard :: Board -> String

    battleship-combinatorics Combinatorics.Battleship.Enumeration

    No documentation available.

  5. formatShips :: (Int, Int) -> [Ship] -> String

    battleship-combinatorics Combinatorics.Battleship.Enumeration

    No documentation available.

  6. formatAbsDistr :: (Int, Int) -> Map (Int, Int) Word64 -> String

    battleship-combinatorics Combinatorics.Battleship.SetCover

    No documentation available.

  7. formatBoard :: (Int, Int) -> Map (Int, Int) Bool -> String

    battleship-combinatorics Combinatorics.Battleship.SetCover

    No documentation available.

  8. formatDistr :: (Int, Int) -> Map (Int, Int) Float -> String

    battleship-combinatorics Combinatorics.Battleship.SetCover

    No documentation available.

  9. foreignKeyConstraintSyntax :: IsSql92TableConstraintSyntax constraint => NonEmpty Text -> Text -> NonEmpty Text -> ForeignKeyAction -> ForeignKeyAction -> constraint

    beam-migrate Database.Beam.Migrate.SQL.SQL92

    Emit a FOREIGN KEY (cols) REFERENCES tbl (refCols) table constraint. Use addTableForeignKey to attach a foreign key to a schema definition.

  10. foreignKeyColumns :: forall (ref :: (Type -> Type) -> Type) tbl . Beamable (PrimaryKey ref) => (tbl (TableField tbl) -> PrimaryKey ref (TableField tbl)) -> tbl (TableField tbl) -> NonEmpty Text

    beam-migrate Database.Beam.Migrate.Types

    Expand a foreign-key accessor into its constituent column-name references, for use with addTableIndex. Example:

    data UserT f = User
    { userId   :: C f Int32
    , userName :: C f Text
    }
    instance Table UserT where
    newtype PrimaryKey UserT f = UserId (C f Int32)
    primaryKey (User {userId = i}) = UserId i
    data OrderT f = Order
    { orderUser :: PrimaryKey UserT f
    , orderDate :: C f Day
    }
    
    addTableIndex "idx_orders_user" indexOptions
    (\t -> foreignKeyColumns orderUser t)
    
    Can be combined with selectorColumnName for composite indices.

Page 155 of many | Previous | Next