Hoogle Search
Within LTS Haskell 24.31 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
eqWord64# :: Word64# -> Word64# -> Int#base GHC.Exts No documentation available.
eqWord8# :: Word8# -> Word8# -> Int#base GHC.Exts No documentation available.
eqDouble :: Double -> Double -> Boolbase GHC.Float No documentation available.
eqFloat :: Float -> Float -> Boolbase GHC.Float No documentation available.
-
base GHC.Int No documentation available.
eqInt16 :: Int16 -> Int16 -> Boolbase GHC.Int No documentation available.
eqInt32 :: Int32 -> Int32 -> Boolbase GHC.Int No documentation available.
eqInt64 :: Int64 -> Int64 -> Boolbase GHC.Int No documentation available.
eqInt8 :: Int8 -> Int8 -> Boolbase GHC.Int No documentation available.
eqInteger :: Integer -> Integer -> Boolbase GHC.Integer Used to implement (==) for the Eq typeclass. Outputs True if two integers are equal to each other.
Example
>>> 6 `eqInteger` 6 True
>>> 6 == 6 True