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.
formErrorMesage :: FormException -> Stringaws Aws.Core No documentation available.
formatPermissions :: [(Text, SqsPermission)] -> [QueryItem]aws Aws.Sqs.Commands.Permission No documentation available.
formatAttributes :: [QueueAttribute] -> [(ByteString, Maybe ByteString)]aws Aws.Sqs.Commands.QueueAttributes No documentation available.
formatBoard :: Board -> Stringbattleship-combinatorics Combinatorics.Battleship.Enumeration No documentation available.
formatShips :: (Int, Int) -> [Ship] -> Stringbattleship-combinatorics Combinatorics.Battleship.Enumeration No documentation available.
formatAbsDistr :: (Int, Int) -> Map (Int, Int) Word64 -> Stringbattleship-combinatorics Combinatorics.Battleship.SetCover No documentation available.
formatBoard :: (Int, Int) -> Map (Int, Int) Bool -> Stringbattleship-combinatorics Combinatorics.Battleship.SetCover No documentation available.
formatDistr :: (Int, Int) -> Map (Int, Int) Float -> Stringbattleship-combinatorics Combinatorics.Battleship.SetCover No documentation available.
-
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.
-
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.