Hoogle Search
Within LTS Haskell 24.35 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
influxdb Database.InfluxDB Tag(s) that you want to include with your data point. Tags are optional in the Line Protocol, so you can set it empty.
-
influxdb Database.InfluxDB.Line Field(s) for your data point. Every data point requires at least one field in the Line Protocol, so it shouldn't be empty.
-
influxdb Database.InfluxDB.Line Tag(s) that you want to include with your data point. Tags are optional in the Line Protocol, so you can set it empty.
type family
IntBaseType a :: IntBaseTypeKint-cast Data.IntCast The (open) type family IntBaseType encodes type-level information about the value range of an integral type. This module also provides type family instances for the standard Haskell 2010 integral types (including Foreign.C.Types) as well as the Natural type. Here's a simple example for registering a custom type with the Data.IntCast facilities:
-- user-implemented unsigned 4-bit integer data Nibble = … -- declare meta-information type instance IntBaseType Nibble = FixedWordTag 4 -- user-implemented signed 7-bit integer data MyInt7 = … -- declare meta-information type instance IntBaseType MyInt7 = FixedIntTag 7
The type-level predicate IsIntSubType provides a partial ordering based on the types above. See also intCast.-
int-cast Data.IntCast (Kind) Meta-information about integral types. If also a Bits instance is defined, the type-level information provided by IntBaseType ought to match the meta-information that is conveyed by the Bits class' isSigned and bitSizeMaybe methods.
type family
IsIntBaseTypeEq (a :: IntBaseTypeK) (b :: IntBaseTypeK) :: Boolint-cast Data.IntCast Closed type family representing an equality-relation on the integer base-type. IsIntBaseTypeEq provides a more convenient entry point.
type family
IsIntBaseTypeIso (a :: IntBaseTypeK) (b :: IntBaseTypeK) :: Boolint-cast Data.IntCast Closed type family representing an equality-relation on bit-width This is a superset of the IsIntBaseTypeEq relation, as it ignores the signedness of fixed-size integers (i.e. Int32 is considered equal to Word32). IsIntTypeIso provides a more convenient entry point.
type
IOIntSet = IntSet PrimState IOintset-imperative Data.IntSet.Bounded.Imperative -
intset-imperative Data.IntSet.Bounded.Imperative A strict bounded integer set. The set is very efficient when accessing elements within the bounds of the set. It uses a regular list to hold numbers outside of this range. The type parameter s is determined by the monad the data structure lives in.
intSetMaxBound :: IntSet s -> Word64intset-imperative Data.IntSet.Bounded.Imperative Get the maximum efficient bound of the integer set.