Hoogle Search

Within LTS Haskell 24.50 (ghc-9.10.3)

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

  1. chatFullInfoFirstName :: ChatFullInfo -> Maybe Text

    telegram-bot-api Telegram.Bot.API.Types.ChatFullInfo

    First name of the other party in a private chat.

  2. contactFirstName :: Contact -> Text

    telegram-bot-api Telegram.Bot.API.Types.Contact

    Contact's first name.

  3. sharedUserFirstName :: SharedUser -> Maybe Text

    telegram-bot-api Telegram.Bot.API.Types.SharedUser

    First name of the user, if the name was requested by the bot.

  4. userFirstName :: User -> Text

    telegram-bot-api Telegram.Bot.API.Types.User

    User's or bot's first name.

  5. loopFirst :: Pattern a -> Pattern a

    tidal Sound.Tidal.Boot

    Takes a pattern and loops only the first cycle of the pattern. For example, the following code will only play the bass drum sample:

    d1 $ loopFirst $ s "<<bd*4 ht*8> cp*4>"
    
    This function combines with sometimes to insert events from the first cycle randomly into subsequent cycles of the pattern:
    d1 $ sometimes loopFirst $ s "<<bd*4 ht*8> cp*4>"
    

  6. streamFirst :: Stream -> ControlPattern -> IO ()

    tidal Sound.Tidal.Boot

    No documentation available.

  7. streamFirst :: ControlPattern -> Op ()

    tidal Sound.Tidal.Safe.Context

    No documentation available.

  8. streamFirst :: Stream -> ControlPattern -> IO ()

    tidal Sound.Tidal.Stream.UI

    No documentation available.

  9. atFirstDayOfWeekOnAfter :: DayOfWeek -> LocalTime -> LocalTime

    tztime Data.Time.TZTime

    Moves the date to the next given DayOfWeek. If the current date is already a match, then the current date is returned unmodified.

    >>> tzt = [tz|2022-02-24 10:00:00 [Europe/London]|]
    
    >>> tzt & modifyLocal (atFirstDayOfWeekOnAfter Thursday)
    2022-02-24 10:00:00 +00:00 [Europe/London]
    
    >>> tzt & modifyLocal (atFirstDayOfWeekOnAfter Wednesday)
    2022-03-02 10:00:00 +00:00 [Europe/London]
    

  10. solveBreadthFirst :: forall w (s :: Type -> Type) a . (C w, C s) => T w s a -> w s a

    unique-logic-tf UniqueLogic.ST.TF.System

    No documentation available.

Page 104 of many | Previous | Next