Hoogle Search

Within LTS Haskell 24.52 (ghc-9.10.3)

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

  1. setsOf :: [[a]] -> [[[a]]]

    extrapolate Test.Extrapolate.Core

    Takes as argument tiers of element values; returns tiers of size-ordered lists of elements without repetition.

    setsOf [[0],[1],[2],...] =
    [ [[]]
    , [[0]]
    , [[1]]
    , [[0,1],[2]]
    , [[0,2],[3]]
    , [[0,3],[1,2],[4]]
    , [[0,1,2],[0,4],[1,3],[5]]
    , ...
    ]
    
    Can be used in the constructor of specialized Listable instances. For Set (from Data.Set), we would have:
    instance Listable a => Listable (Set a) where
    tiers  =  mapT fromList $ setsOf tiers
    

  2. setNumStripes :: Maybe Int -> PoolConfig a -> PoolConfig a

    faktory Data.Pool.Compat

    Set the number of stripes in the pool. If set to Nothing (the default value), the pool will create the amount of stripes equal to the number of capabilities. This ensures that threads never compete over access to the same stripe and results in a very good performance in a multi-threaded environment.

  3. settingsConnection :: Settings -> ConnectionInfo

    faktory Faktory.Settings

    No documentation available.

  4. settingsDefaultJobOptions :: Settings -> JobOptions

    faktory Faktory.Settings

    No documentation available.

  5. settingsId :: WorkerSettings -> Maybe WorkerId

    faktory Faktory.Settings

    No documentation available.

  6. settingsIdleDelay :: WorkerSettings -> Int

    faktory Faktory.Settings

    No documentation available.

  7. settingsLogDebug :: Settings -> String -> IO ()

    faktory Faktory.Settings

    No documentation available.

  8. settingsLogError :: Settings -> String -> IO ()

    faktory Faktory.Settings

    No documentation available.

  9. settingsOnFailed :: WorkerSettings -> SomeException -> IO ()

    faktory Faktory.Settings

    No documentation available.

  10. settingsQueue :: WorkerSettings -> Queue

    faktory Faktory.Settings

    No documentation available.

Page 777 of many | Previous | Next