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.
(
.>. ) :: OperatorContext c => Record c ft -> Record c ft -> Record c (Maybe Bool)relational-schemas Database.Custom.SQLite3 Compare operator corresponding SQL > .
(
.>=. ) :: OperatorContext c => Record c ft -> Record c ft -> Record c (Maybe Bool)relational-schemas Database.Custom.SQLite3 Compare operator corresponding SQL >= .
(
.||. ) :: OperatorContext c => Record c a -> Record c a -> Record c arelational-schemas Database.Custom.SQLite3 Concatenate operator corresponding SQL || .
(
.: ) :: (a -> b) -> (c -> d -> a) -> c -> d -> bxmonad-contrib XMonad.Prelude Multivariable composition.
f .: g ≡ (f .) . g ≡ \c d -> f (g c d)
(
.| ) :: Logger -> Logger -> Loggerxmonad-contrib XMonad.Util.Loggers An infix operator for logDefault, which can be more convenient to combine multiple loggers.
logTitle .| logWhenActive 0 (logConst "*") .| logConst "There's nothing here"
(
!<<. ) :: Bits a => a -> Int -> abase Data.Bits Infix version of unsafeShiftL.
(
!>>. ) :: Bits a => a -> Int -> abase Data.Bits Infix version of unsafeShiftR.
newtype ((f :: k2 -> Type)
:.: (g :: k1 -> k2)) (p :: k1)base GHC.Generics Composition of functors
(
-<.> ) :: FilePath -> String -> FilePathfilepath System.FilePath Remove the current extension and add another, equivalent to replaceExtension.
"/directory/path.txt" -<.> "ext" == "/directory/path.ext" "/directory/path.txt" -<.> ".ext" == "/directory/path.ext" "foo.o" -<.> "c" == "foo.c"
(
<.> ) :: FilePath -> String -> FilePathfilepath System.FilePath Add an extension, even if there is already one there, equivalent to addExtension.
"/directory/path" <.> "ext" == "/directory/path.ext" "/directory/path" <.> ".ext" == "/directory/path.ext"