Hoogle Search

Within LTS Haskell 24.39 (ghc-9.10.3)

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

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

    battleship-combinatorics Combinatorics.Battleship.Enumeration

    No documentation available.

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

    battleship-combinatorics Combinatorics.Battleship.SetCover

    No documentation available.

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

    battleship-combinatorics Combinatorics.Battleship.SetCover

    No documentation available.

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

    battleship-combinatorics Combinatorics.Battleship.SetCover

    No documentation available.

  5. 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.

  6. 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.

  7. forestgreen :: Colour Double

    blank-canvas Graphics.Blank.Style

    #228B22, rgb(34, 139, 34), hsl(120, 61%, 34%)

  8. foreignobject :: Svg -> Svg

    blaze-svg Text.Blaze.Svg11

    Combinator for the <foreignObject> element.

  9. format :: AttributeValue -> Attribute

    blaze-svg Text.Blaze.Svg11.Attributes

    Combinator for the format attribute.

  10. forceMergeIndex :: MonadBH m => IndexSelection -> ForceMergeIndexSettings -> m ShardsResult

    bloodhound Database.Bloodhound.Common.Client

    forceMergeIndex The force merge API allows to force merging of one or more indices through an API. The merge relates to the number of segments a Lucene index holds within each shard. The force merge operation allows to reduce the number of segments by merging them. This call will block until the merge is complete. If the http connection is lost, the request will continue in the background, and any new requests will block until the previous force merge is complete.

Page 155 of many | Previous | Next