packages feed

instana-haskell-trace-sdk-0.2.0.0: src/Instana/SDK/Internal/Util.hs

{-|
Module      : Instana.SDK.Internal.Util
Description : Utilities
-}
module Instana.SDK.Internal.Util
  ( (|>)
  ) where


-- |Elm-style function application.
(|>) :: a -> (a -> b) -> b
(|>) =
  flip ($)