Hoogle Search

Within LTS Haskell 24.38 (ghc-9.10.3)

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

  1. _msgStatusJournal_sequence_descriptor :: MsgStatusJournal -> !Word8

    sbp SwiftNav.SBP.System

    Index and number of messages in this sequence. First nibble is the size of the sequence (n), second nibble is the zero-indexed counter (ith packet of n)

  2. _msgStatusReport_sequence :: MsgStatusReport -> !Word32

    sbp SwiftNav.SBP.System

    Increments on each status report sent

  3. msgStatusJournal_sequence_descriptor :: Lens' MsgStatusJournal Word8

    sbp SwiftNav.SBP.System

    No documentation available.

  4. msgStatusReport_sequence :: Lens' MsgStatusReport Word32

    sbp SwiftNav.SBP.System

    No documentation available.

  5. evalSequenceIdT :: Monad m => SequenceIdT s m b -> s -> m b

    seqid Data.SequenceId

    No documentation available.

  6. execSequenceIdT :: Monad m => SequenceIdT s m b -> s -> m s

    seqid Data.SequenceId

    No documentation available.

  7. runSequenceIdT :: Monad m => SequenceIdT s m b -> s -> m (b, s)

    seqid Data.SequenceId

    No documentation available.

  8. unSequenceIdT :: SequenceIdT s (m :: Type -> Type) a -> StateT s m a

    seqid Data.SequenceId

    No documentation available.

  9. isSubsequenceOf :: Eq a => Slist a -> Slist a -> Bool

    slist Slist

    Takes two slists and returns True if all the elements of the first slist occur, in order, in the second. The elements do not have to occur consecutively. isSubsequenceOf x y is equivalent to elem x (subsequences y).

    >>> isSubsequenceOf (slist "Hll") (slist "Hello World!")
    True
    
    >>> isSubsequenceOf (slist "") (slist "Hello World!")
    True
    
    >>> isSubsequenceOf (slist "Hallo") (slist "Hello World!")
    False
    
    Note: this function hangs if the second slist is infinite.
    >> isSuffixOf anything (infiniteSlist [1..])
    <hangs>
    
    Use safeIsSuffixOf instead.

  10. safeIsSubsequenceOf :: Eq a => Slist a -> Slist a -> Bool

    slist Slist

    Similar to isSubsequenceOf, but never hangs on infinite lists and returns False in that case.

    >>> safeIsSubsequenceOf (infiniteSlist [1..]) (infiniteSlist [1..])
    False
    
    >>> safeIsSubsequenceOf (infiniteSlist [0..]) (infiniteSlist [1..])
    False
    

Page 87 of many | Previous | Next