repository_name,commit_hash,module_name,class_name,src_location,class_definition,line_number_start,line_number_end,created_at,updated_at HTTP,unknown,Network.TCP,HStream,Network/TCP.hs:148:29-35,"class BufferType bufType => HStream bufType where openStream :: String -> Int -> IO (HandleStream bufType) openSocketStream :: String -> Int -> Socket -> IO (HandleStream bufType) readLine :: HandleStream bufType -> IO (Result bufType) readBlock :: HandleStream bufType -> Int -> IO (Result bufType) writeBlock :: HandleStream bufType -> bufType -> IO (Result ()) close :: HandleStream bufType -> IO () closeQuick :: HandleStream bufType -> IO () closeOnEnd :: HandleStream bufType -> Bool -> IO ()",148,156,2025-11-07 11:41:33.290513,2025-11-07 11:41:33.290513 HTTP,unknown,Network.Stream,Stream,Network/Stream.hs:78:7-12,"class Stream x where readLine :: x -> IO (Result String) readBlock :: x -> Int -> IO (Result String) writeBlock :: x -> String -> IO (Result ()) close :: x -> IO () closeOnEnd :: x -> Bool -> IO () "" True => shutdown the connection when response has been read / end-of-stream has been reached.""",78,83,2025-11-07 11:41:33.290532,2025-11-07 11:41:33.290532 HTTP,unknown,Network.BufferType,BufferType,Network/BufferType.hs:48:7-16,"class BufferType bufType where bufferOps :: BufferOp bufType",48,49,2025-11-07 11:41:33.290541,2025-11-07 11:41:33.290541 HTTP,unknown,Network.HTTP.Headers,HasHeaders,Network/HTTP/Headers.hs:358:7-16,"class HasHeaders x where getHeaders :: x -> [Header] setHeaders :: x -> [Header] -> x",358,360,2025-11-07 11:41:33.290547,2025-11-07 11:41:33.290547 HTTP,unknown,Network.HTTP.MD5Aux,MD5,Network/HTTP/MD5Aux.hs:27:7-9,"class MD5 a where get_next :: a -> ([Word32], Int, a) len_pad :: Word64 -> a -> a finished :: a -> Bool",27,33,2025-11-07 11:41:33.290553,2025-11-07 11:41:33.290553 HUnit,unknown,Test.HUnit.Base,Assertable,src/Test/HUnit/Base.hs:88:7-16,"class Assertable t where assert :: HasCallStack => t -> Assertion",88,89,2025-11-07 11:41:34.373177,2025-11-07 11:41:34.373177 HUnit,unknown,Test.HUnit.Base,ListAssertable,src/Test/HUnit/Base.hs:104:7-20,"class ListAssertable t where listAssert :: HasCallStack => [t] -> Assertion",104,105,2025-11-07 11:41:34.373186,2025-11-07 11:41:34.373186 HUnit,unknown,Test.HUnit.Base,AssertionPredicable,src/Test/HUnit/Base.hs:140:7-25,"class AssertionPredicable t where assertionPredicate :: t -> AssertionPredicate",140,141,2025-11-07 11:41:34.373192,2025-11-07 11:41:34.373192 HUnit,unknown,Test.HUnit.Base,Testable,src/Test/HUnit/Base.hs:203:7-14,"class Testable t where test :: HasCallStack => t -> Test",203,204,2025-11-07 11:41:34.373198,2025-11-07 11:41:34.373198 JuicyPixels,unknown,Codec.Picture,Decimable,src/Codec/Picture.hs:290:7-15,"class Decimable px1 px2 where decimateBitDepth :: Image px1 -> Image px2",290,291,2025-11-07 11:41:36.016641,2025-11-07 11:41:36.016641 JuicyPixels,unknown,Codec.Picture.Types,ColorPlane,src/Codec/Picture/Types.hs:171:7-16,"class ColorPlane pixel planeToken where toComponentIndex :: pixel -> planeToken -> Int",171,174,2025-11-07 11:41:36.016656,2025-11-07 11:41:36.016656 JuicyPixels,unknown,Codec.Picture.Types,TransparentPixel,src/Codec/Picture/Types.hs:268:29-44,"class (Pixel a, Pixel b) => TransparentPixel a b | a -> b where dropTransparency :: a -> b getTransparency :: a -> PixelBaseComponent a",268,274,2025-11-07 11:41:36.016663,2025-11-07 11:41:36.016663 JuicyPixels,unknown,Codec.Picture.Types,Pixel,src/Codec/Picture/Types.hs:701:47-51,"class (Storable (PixelBaseComponent a), Num (PixelBaseComponent a), Eq a) => Pixel a where type PixelBaseComponent a :: * mixWith :: (Int -> PixelBaseComponent a -> PixelBaseComponent a -> PixelBaseComponent a) -> a -> a -> a mixWithAlpha :: (Int -> PixelBaseComponent a -> PixelBaseComponent a -> PixelBaseComponent a) "" Function for color component"" -> (PixelBaseComponent a -> PixelBaseComponent a -> PixelBaseComponent a) "" Function for alpha component"" -> a -> a -> a {-# INLINE mixWithAlpha #-} mixWithAlpha f _ = mixWith f pixelOpacity :: a -> PixelBaseComponent a componentCount :: a -> Int colorMap :: (PixelBaseComponent a -> PixelBaseComponent a) -> a -> a pixelBaseIndex :: Image a -> Int -> Int -> Int pixelBaseIndex (Image {imageWidth = w}) x y = (x + y * w) * componentCount (undefined :: a) mutablePixelBaseIndex :: MutableImage s a -> Int -> Int -> Int mutablePixelBaseIndex (MutableImage {mutableImageWidth = w}) x y = (x + y * w) * componentCount (undefined :: a) pixelAt :: Image a -> Int -> Int -> a readPixel :: PrimMonad m => MutableImage (PrimState m) a -> Int -> Int -> m a writePixel :: PrimMonad m => MutableImage (PrimState m) a -> Int -> Int -> a -> m () unsafePixelAt :: V.Vector (PixelBaseComponent a) -> Int -> a unsafeReadPixel :: PrimMonad m => M.STVector (PrimState m) (PixelBaseComponent a) -> Int -> m a unsafeWritePixel :: PrimMonad m => M.STVector (PrimState m) (PixelBaseComponent a) -> Int -> a -> m ()",700,779,2025-11-07 11:41:36.016670,2025-11-07 11:41:36.016670 JuicyPixels,unknown,Codec.Picture.Types,ColorConvertible,src/Codec/Picture/Types.hs:786:29-44,"class (Pixel a, Pixel b) => ColorConvertible a b where promotePixel :: a -> b promoteImage :: Image a -> Image b promoteImage = pixelMap promotePixel",786,794,2025-11-07 11:41:36.016693,2025-11-07 11:41:36.016693 JuicyPixels,unknown,Codec.Picture.Types,ColorSpaceConvertible,src/Codec/Picture/Types.hs:798:29-49,"class (Pixel a, Pixel b) => ColorSpaceConvertible a b where convertPixel :: a -> b convertImage :: Image a -> Image b convertImage = pixelMap convertPixel",798,806,2025-11-07 11:41:36.016699,2025-11-07 11:41:36.016699 JuicyPixels,unknown,Codec.Picture.Types,LumaPlaneExtractable,src/Codec/Picture/Types.hs:1141:50-69,"class (Pixel a, Pixel (PixelBaseComponent a)) => LumaPlaneExtractable a where computeLuma :: a -> PixelBaseComponent a extractLumaPlane :: Image a -> Image (PixelBaseComponent a) extractLumaPlane = pixelMap computeLuma",1141,1152,2025-11-07 11:41:36.016706,2025-11-07 11:41:36.016706 JuicyPixels,unknown,Codec.Picture.Types,PackeablePixel,src/Codec/Picture/Types.hs:2406:7-20,"class PackeablePixel a where type PackedRepresentation a packPixel :: a -> PackedRepresentation a unpackPixel :: PackedRepresentation a -> a",2406,2417,2025-11-07 11:41:36.016713,2025-11-07 11:41:36.016713 JuicyPixels,unknown,Codec.Picture.Jpg,JpgEncodable,src/Codec/Picture/Jpg.hs:795:52-63,"class (Pixel px, PixelBaseComponent px ~ Word8) => JpgEncodable px where additionalBlocks :: Image px -> [JpgFrame] additionalBlocks _ = [] componentsOfColorSpace :: Image px -> [JpgComponent] encodingState :: Int -> Image px -> V.Vector EncoderState imageHuffmanTables :: Image px -> [(JpgHuffmanTableSpec, HuffmanPackedTree)] imageHuffmanTables _ = defaultHuffmanTables scanSpecificationOfColorSpace :: Image px -> [JpgScanSpecification] quantTableSpec :: Image px -> Int -> [JpgQuantTableSpec] quantTableSpec _ qual = take 1 $ zigzaggedQuantificationSpec qual maximumSubSamplingOf :: Image px -> Int maximumSubSamplingOf _ = 1",795,812,2025-11-07 11:41:36.016720,2025-11-07 11:41:36.016720 JuicyPixels,unknown,Codec.Picture.Tga,TGAPixel,src/Codec/Picture/Tga.hs:216:31-38,"class (Pixel (Unpacked a)) => TGAPixel a where type Unpacked a packedByteSize :: a -> Int tgaUnpack :: a -> B.ByteString -> Int -> Unpacked a",216,219,2025-11-07 11:41:36.016732,2025-11-07 11:41:36.016732 JuicyPixels,unknown,Codec.Picture.Tga,TgaSaveable,src/Codec/Picture/Tga.hs:469:7-17,"class TgaSaveable a where tgaDataOfImage :: Image a -> B.ByteString tgaPixelDepthOfImage :: Image a -> Word8 tgaTypeOfImage :: Image a -> TgaImageType",469,472,2025-11-07 11:41:36.016738,2025-11-07 11:41:36.016738 JuicyPixels,unknown,Codec.Picture.Bitmap,BmpEncodable,src/Codec/Picture/Bitmap.hs:359:7-18,"class BmpEncodable pixel where bitsPerPixel :: pixel -> Int bmpEncode :: Image pixel -> Put hasAlpha :: Image pixel -> Bool defaultPalette :: pixel -> BmpPalette defaultPalette _ = BmpPalette []",359,364,2025-11-07 11:41:36.016745,2025-11-07 11:41:36.016745 JuicyPixels,unknown,Codec.Picture.Tiff,Unpackable,src/Codec/Picture/Tiff.hs:211:7-16,"class Unpackable a where type StorageType a :: * outAlloc :: a -> Int -> ST s (M.STVector s (StorageType a)) allocTempBuffer :: a -> M.STVector s (StorageType a) -> Int -> ST s (M.STVector s Word8) offsetStride :: a -> Int -> Int -> (Int, Int) mergeBackTempBuffer :: a "" Type witness, just for the type checker."" -> Endianness -> M.STVector s Word8 "" Temporary buffer handling decompression."" -> Int "" Line size in pixels"" -> Int "" Write index, in bytes"" -> Word32 "" size, in bytes"" -> Int "" Stride"" -> M.STVector s (StorageType a) "" Final buffer"" -> ST s ()",211,230,2025-11-07 11:41:36.016752,2025-11-07 11:41:36.016752 JuicyPixels,unknown,Codec.Picture.Tiff,TiffSaveable,src/Codec/Picture/Tiff.hs:837:21-32,"class (Pixel px) => TiffSaveable px where colorSpaceOfPixel :: px -> TiffColorspace extraSampleCodeOfPixel :: px -> Maybe ExtraSample extraSampleCodeOfPixel _ = Nothing subSamplingInfo :: px -> V.Vector Word32 subSamplingInfo _ = V.empty sampleFormat :: px -> [TiffSampleFormat] sampleFormat _ = [TiffSampleUint]",837,847,2025-11-07 11:41:36.016764,2025-11-07 11:41:36.016764 JuicyPixels,unknown,Codec.Picture.Png.Internal.Export,PngPaletteSaveable,src/Codec/Picture/Png/Internal/Export.hs:40:7-24,"class PngPaletteSaveable a where encodePalettedPng :: Image a -> Image Pixel8 -> Either String Lb.ByteString encodePalettedPng = encodePalettedPngWithMetadata mempty encodePalettedPngWithMetadata :: Metadatas -> Image a -> Image Pixel8 -> Either String Lb.ByteString",40,50,2025-11-07 11:41:36.016772,2025-11-07 11:41:36.016772 JuicyPixels,unknown,Codec.Picture.Png.Internal.Export,PngSavable,src/Codec/Picture/Png/Internal/Export.hs:76:7-16,"class PngSavable a where encodePng :: Image a -> Lb.ByteString encodePng = encodePngWithMetadata mempty encodePngWithMetadata :: Metadatas -> Image a -> Lb.ByteString",76,104,2025-11-07 11:41:36.016780,2025-11-07 11:41:36.016780 JuicyPixels,unknown,Codec.Picture.Jpg.Internal.Types,SizeCalculable,src/Codec/Picture/Jpg/Internal/Types.hs:332:7-20,"class SizeCalculable a where calculateSize :: a -> Int",332,333,2025-11-07 11:41:36.016787,2025-11-07 11:41:36.016787 JuicyPixels,unknown,Codec.Picture.Tiff.Internal.Types,BinaryParam,src/Codec/Picture/Tiff/Internal/Types.hs:80:7-17,"class BinaryParam a b where getP :: a -> Get b putP :: a -> b -> Put",80,82,2025-11-07 11:41:36.016793,2025-11-07 11:41:36.016793 MonadPrompt,unknown,Control.Monad.Prompt,MonadPrompt,Control/Monad/Prompt.hs:83:18-28,"class Monad m => MonadPrompt p m | m -> p where prompt :: p a -> m a",83,84,2025-11-07 11:41:37.291216,2025-11-07 11:41:37.291216 MonadRandom,unknown,Control.Monad.Random.Class,MonadRandom,Control/Monad/Random/Class.hs:82:20-30,"class (Monad m) => MonadRandom m where getRandomR :: (Random.Random a) => (a, a) -> m a getRandom :: (Random.Random a) => m a getRandomRs :: (Random.Random a) => (a, a) -> m [a] getRandoms :: (Random.Random a) => m [a]",82,117,2025-11-07 11:41:38.244766,2025-11-07 11:41:38.244766 MonadRandom,unknown,Control.Monad.Random.Class,MonadSplit,Control/Monad/Random/Class.hs:202:20-29,"class (Monad m) => MonadSplit g m | m -> g where getSplit :: m g",202,208,2025-11-07 11:41:38.244776,2025-11-07 11:41:38.244776 MonadRandom,unknown,Control.Monad.Random.Class,MonadInterleave,Control/Monad/Random/Class.hs:252:24-38,"class MonadRandom m => MonadInterleave m where interleave :: m a -> m a",252,296,2025-11-07 11:41:38.244783,2025-11-07 11:41:38.244783 QuickCheck,unknown,Test.QuickCheck.Property,Testable,src/Test/QuickCheck/Property.hs:93:7-14,"class Testable prop where property :: prop -> Property propertyForAllShrinkShow :: Gen a -> (a -> [a]) -> (a -> [String]) -> (a -> prop) -> Property propertyForAllShrinkShow gen shr shw f = forAllShrinkBlind gen shr $ \ x -> foldr counterexample (property (f x)) (shw x)",93,105,2025-11-07 11:41:41.299631,2025-11-07 11:41:41.299631 QuickCheck,unknown,Test.QuickCheck.Arbitrary,Arbitrary,src/Test/QuickCheck/Arbitrary.hs:194:7-15,"class Arbitrary a where arbitrary :: Gen a shrink :: a -> [a] shrink _ = []",194,283,2025-11-07 11:41:41.299648,2025-11-07 11:41:41.299648 QuickCheck,unknown,Test.QuickCheck.Arbitrary,Arbitrary1,src/Test/QuickCheck/Arbitrary.hs:286:7-16,"class Arbitrary1 f where liftArbitrary :: Gen a -> Gen (f a) liftShrink :: (a -> [a]) -> f a -> [f a] liftShrink _ _ = []",286,289,2025-11-07 11:41:41.299654,2025-11-07 11:41:41.299654 QuickCheck,unknown,Test.QuickCheck.Arbitrary,Arbitrary2,src/Test/QuickCheck/Arbitrary.hs:298:7-16,"class Arbitrary2 f where liftArbitrary2 :: Gen a -> Gen b -> Gen (f a b) liftShrink2 :: (a -> [a]) -> (b -> [b]) -> f a b -> [f a b] liftShrink2 _ _ _ = []",298,301,2025-11-07 11:41:41.299661,2025-11-07 11:41:41.299661 QuickCheck,unknown,Test.QuickCheck.Arbitrary,RecursivelyShrink,src/Test/QuickCheck/Arbitrary.hs:319:7-23,"class RecursivelyShrink f where grecursivelyShrink :: f a -> [f a]",319,320,2025-11-07 11:41:41.299667,2025-11-07 11:41:41.299667 QuickCheck,unknown,Test.QuickCheck.Arbitrary,GSubterms,src/Test/QuickCheck/Arbitrary.hs:350:7-15,"class GSubterms f a where gSubterms :: f a -> [a]",350,360,2025-11-07 11:41:41.299673,2025-11-07 11:41:41.299673 QuickCheck,unknown,Test.QuickCheck.Arbitrary,GSubtermsIncl,src/Test/QuickCheck/Arbitrary.hs:383:7-19,"class GSubtermsIncl f a where gSubtermsIncl :: f a -> [a]",383,389,2025-11-07 11:41:41.299679,2025-11-07 11:41:41.299679 QuickCheck,unknown,Test.QuickCheck.Arbitrary,CoArbitrary,src/Test/QuickCheck/Arbitrary.hs:1317:7-17,"class CoArbitrary a where coarbitrary :: a -> Gen b -> Gen b default coarbitrary :: (Generic a, GCoArbitrary (Rep a)) => a -> Gen b -> Gen b coarbitrary = genericCoarbitrary",1317,1332,2025-11-07 11:41:41.299686,2025-11-07 11:41:41.299686 QuickCheck,unknown,Test.QuickCheck.Arbitrary,GCoArbitrary,src/Test/QuickCheck/Arbitrary.hs:1338:7-18,"class GCoArbitrary f where gCoarbitrary :: f a -> Gen b -> Gen b",1338,1339,2025-11-07 11:41:41.299693,2025-11-07 11:41:41.299693 QuickCheck,unknown,Test.QuickCheck.Modifiers,ShrinkState,src/Test/QuickCheck/Modifiers.hs:468:7-17,"class ShrinkState s a where shrinkInit :: a -> s shrinkState :: a -> s -> [(a, s)]",468,470,2025-11-07 11:41:41.299698,2025-11-07 11:41:41.299698 QuickCheck,unknown,Test.QuickCheck.Random,Splittable,src/Test/QuickCheck/Random.hs:79:7-16,"class Splittable a where left, right :: a -> a",79,80,2025-11-07 11:41:41.299704,2025-11-07 11:41:41.299704 QuickCheck,unknown,Test.QuickCheck.Function,Function,src/Test/QuickCheck/Function.hs:165:7-14,"class Function a where function :: (a -> b) -> (a :-> b) default function :: (Generic a, GFunction (Rep a)) => (a -> b) -> (a :-> b) function = genericFunction",165,169,2025-11-07 11:41:41.299710,2025-11-07 11:41:41.299710 QuickCheck,unknown,Test.QuickCheck.Function,GFunction,src/Test/QuickCheck/Function.hs:465:7-15,"class GFunction f where gFunction :: (f a -> b) -> (f a :-> b)",465,466,2025-11-07 11:41:41.299716,2025-11-07 11:41:41.299716 RSA,unknown,Codec.Crypto.RSA.Pure,RSAKey,src/Codec/Crypto/RSA/Pure.hs:88:7-12,"class RSAKey a where genKeySize :: a -> Int",88,89,2025-11-07 11:41:42.400257,2025-11-07 11:41:42.400257 StateVar,unknown,Data.StateVar,HasSetter,src/Data/StateVar.hs:176:7-15,"class HasSetter t a | t -> a where ($=) :: MonadIO m => t -> a -> m ()",176,178,2025-11-07 11:41:44.865669,2025-11-07 11:41:44.865669 StateVar,unknown,Data.StateVar,HasUpdate,src/Data/StateVar.hs:216:24-32,"class HasSetter t b => HasUpdate t a b | t -> a b where ($~) :: MonadIO m => t -> (a -> b) -> m () default ($~) :: (MonadIO m, a ~ b, HasGetter t a) => t -> (a -> b) -> m () ($~) = defaultUpdate ($~!) :: MonadIO m => t -> (a -> b) -> m () default ($~!) :: (MonadIO m, a ~ b, HasGetter t a) => t -> (a -> b) -> m () ($~!) = defaultUpdateStrict",216,227,2025-11-07 11:41:44.865677,2025-11-07 11:41:44.865677 syb,unknown,GetC,GetT,tests/GetC.hs:86:7-10,class GetT f t | f -> t,86,86,2025-11-07 11:55:36.961992,2025-11-07 11:55:36.961992 StateVar,unknown,Data.StateVar,HasGetter,src/Data/StateVar.hs:275:7-15,"class HasGetter t a | t -> a where get :: MonadIO m => t -> m a",275,276,2025-11-07 11:41:44.865687,2025-11-07 11:41:44.865687 adjunctions,unknown,Data.Functor.Adjunction,Adjunction,src/Data/Functor/Adjunction.hs:81:7-16,"class (Functor f, Representable u) => Adjunction f u | f -> u, u -> f where {-# MINIMAL (unit, counit) | (leftAdjunct, rightAdjunct) #-} unit :: a -> u (f a) counit :: f (u a) -> a leftAdjunct :: (f a -> b) -> a -> u b rightAdjunct :: (a -> u b) -> f a -> b unit = leftAdjunct id counit = rightAdjunct id leftAdjunct f = fmap f . unit rightAdjunct f = counit . fmap f",80,93,2025-11-07 11:41:46.873451,2025-11-07 11:41:46.873451 adjunctions,unknown,Data.Functor.Rep,Representable,src/Data/Functor/Rep.hs:130:25-37,"class Distributive f => Representable f where type Rep f :: * type Rep f = GRep f tabulate :: (Rep f -> a) -> f a default tabulate :: (Generic1 f, GRep f ~ Rep f, GTabulate (Rep1 f)) => (Rep f -> a) -> f a tabulate = gtabulate index :: f a -> Rep f -> a default index :: (Generic1 f, GRep f ~ Rep f, GIndex (Rep1 f)) => f a -> Rep f -> a index = gindex",130,150,2025-11-07 11:41:46.873466,2025-11-07 11:41:46.873466 adjunctions,unknown,Data.Functor.Rep,GTabulate,src/Data/Functor/Rep.hs:181:7-15,"class GTabulate f where gtabulate' :: (GRep' f -> a) -> f a",181,182,2025-11-07 11:41:46.873477,2025-11-07 11:41:46.873477 adjunctions,unknown,Data.Functor.Rep,GIndex,src/Data/Functor/Rep.hs:183:7-12,"class GIndex f where gindex' :: f a -> GRep' f -> a",183,184,2025-11-07 11:41:46.873482,2025-11-07 11:41:46.873482 adjunctions,unknown,Data.Functor.Contravariant.Adjunction,Adjunction,src/Data/Functor/Contravariant/Adjunction.hs:43:45-54,"class (Contravariant f, Representable g) => Adjunction f g | f -> g, g -> f where {-# MINIMAL (unit, counit) | (leftAdjunct, rightAdjunct) #-} unit :: a -> g (f a) counit :: a -> f (g a) leftAdjunct :: (b -> f a) -> a -> g b rightAdjunct :: (a -> g b) -> b -> f a unit = leftAdjunct id counit = rightAdjunct id leftAdjunct f = contramap f . unit rightAdjunct f = contramap f . counit",43,55,2025-11-07 11:41:46.873488,2025-11-07 11:41:46.873488 adjunctions,unknown,Data.Functor.Contravariant.Rep,Representable,src/Data/Functor/Contravariant/Rep.hs:40:26-38,"class Contravariant f => Representable f where type Rep f :: * tabulate :: (a -> Rep f) -> f a index :: f a -> a -> Rep f contramapWithRep :: (b -> Either a (Rep f)) -> f a -> f b contramapWithRep f p = tabulate $ either (index p) id . f",40,55,2025-11-07 11:41:46.873501,2025-11-07 11:41:46.873501 aeson,unknown,Data.Aeson.TH,LookupField,src/Data/Aeson/TH.hs:1152:7-17,"class LookupField a where lookupField :: (Value -> Parser a) -> String -> String -> Object -> Key -> Parser a",1152,1154,2025-11-07 11:41:48.339374,2025-11-07 11:41:48.339374 aeson,unknown,Data.Aeson.Types.Generic,IsRecord,src/Data/Aeson/Types/Generic.hs:46:7-14,class IsRecord (f :: Type -> Type) isRecord | f -> isRecord,46,46,2025-11-07 11:41:48.339395,2025-11-07 11:41:48.339395 aeson,unknown,Data.Aeson.Types.Generic,AllNullary,src/Data/Aeson/Types/Generic.hs:59:7-16,class AllNullary (f :: Type -> Type) allNullary | f -> allNullary,59,59,2025-11-07 11:41:48.339402,2025-11-07 11:41:48.339402 aeson,unknown,Data.Aeson.Types.Generic,And,src/Data/Aeson/Types/Generic.hs:81:10-12,class And bool1 bool2 bool3 | bool1 bool2 -> bool3,81,81,2025-11-07 11:41:48.339407,2025-11-07 11:41:48.339407 aeson,unknown,Data.Aeson.Types.Generic,ProductSize,src/Data/Aeson/Types/Generic.hs:98:7-17,"class ProductSize f where productSize :: Tagged2 f Int",98,99,2025-11-07 11:41:48.339412,2025-11-07 11:41:48.339412 aeson,unknown,Data.Aeson.Types.FromJSON,GFromJSON,src/Data/Aeson/Types/FromJSON.hs:249:7-15,"class GFromJSON arity f where gParseJSON :: Options -> FromArgs arity a -> Value -> Parser (f a)",249,253,2025-11-07 11:41:48.339418,2025-11-07 11:41:48.339418 aeson,unknown,Data.Aeson.Types.FromJSON,FromJSON,src/Data/Aeson/Types/FromJSON.hs:386:7-14,"class FromJSON a where parseJSON :: Value -> Parser a default parseJSON :: (Generic a, GFromJSON Zero (Rep a)) => Value -> Parser a parseJSON = genericParseJSON defaultOptions parseJSONList :: Value -> Parser [a] parseJSONList = withArray ""[]"" $ \ a -> zipWithM (parseIndexedJSON parseJSON) [0 .. ] . V.toList $ a",386,396,2025-11-07 11:41:48.339424,2025-11-07 11:41:48.339424 aeson,unknown,Data.Aeson.Types.FromJSON,FromJSONKey,src/Data/Aeson/Types/FromJSON.hs:423:7-17,"class FromJSONKey a where fromJSONKey :: FromJSONKeyFunction a default fromJSONKey :: FromJSON a => FromJSONKeyFunction a fromJSONKey = FromJSONKeyValue parseJSON fromJSONKeyList :: FromJSONKeyFunction [a] default fromJSONKeyList :: FromJSON a => FromJSONKeyFunction [a] fromJSONKeyList = FromJSONKeyValue parseJSON",423,435,2025-11-07 11:41:48.339433,2025-11-07 11:41:48.339433 aeson,unknown,Data.Aeson.Types.FromJSON,GFromJSONKey,src/Data/Aeson/Types/FromJSON.hs:516:51-62,"class (ConstructorNames f, SumFromString f) => GFromJSONKey f",516,516,2025-11-07 11:41:48.339441,2025-11-07 11:41:48.339441 aeson,unknown,Data.Aeson.Types.FromJSON,FromJSON1,src/Data/Aeson/Types/FromJSON.hs:610:7-15,"class FromJSON1 f where liftParseJSON :: (Value -> Parser a) -> (Value -> Parser [a]) -> Value -> Parser (f a) default liftParseJSON :: (Generic1 f, GFromJSON One (Rep1 f)) => (Value -> Parser a) -> (Value -> Parser [a]) -> Value -> Parser (f a) liftParseJSON = genericLiftParseJSON defaultOptions liftParseJSONList :: (Value -> Parser a) -> (Value -> Parser [a]) -> Value -> Parser [f a] liftParseJSONList f g v = listParser (liftParseJSON f g) v",610,618,2025-11-07 11:41:48.339446,2025-11-07 11:41:48.339446 aeson,unknown,Data.Aeson.Types.FromJSON,FromJSON2,src/Data/Aeson/Types/FromJSON.hs:637:7-15,"class FromJSON2 f where liftParseJSON2 :: (Value -> Parser a) -> (Value -> Parser [a]) -> (Value -> Parser b) -> (Value -> Parser [b]) -> Value -> Parser (f a b) liftParseJSONList2 :: (Value -> Parser a) -> (Value -> Parser [a]) -> (Value -> Parser b) -> (Value -> Parser [b]) -> Value -> Parser [f a b] liftParseJSONList2 fa ga fb gb = withArray ""[]"" $ \ vals -> fmap V.toList (V.mapM (liftParseJSON2 fa ga fb gb) vals)",637,651,2025-11-07 11:41:48.339456,2025-11-07 11:41:48.339456 aeson,unknown,Data.Aeson.Types.FromJSON,GFromJSON',src/Data/Aeson/Types/FromJSON.hs:978:7-16,"class GFromJSON' arity f where gParseJSON' :: TypeName :* Options :* FromArgs arity a -> Value -> Parser (f a)",978,981,2025-11-07 11:41:48.339466,2025-11-07 11:41:48.339466 aeson,unknown,Data.Aeson.Types.FromJSON,ParseSum,src/Data/Aeson/Types/FromJSON.hs:1020:7-14,"class ParseSum arity f allNullary where parseSum :: TypeName :* Options :* FromArgs arity a -> Value -> Tagged allNullary (Parser (f a))",1020,1023,2025-11-07 11:41:48.339472,2025-11-07 11:41:48.339472 aeson,unknown,Data.Aeson.Types.FromJSON,SumFromString,src/Data/Aeson/Types/FromJSON.hs:1068:7-19,"class SumFromString f where parseSumFromString :: (String -> String) -> Text -> Maybe (f a)",1068,1069,2025-11-07 11:41:48.339478,2025-11-07 11:41:48.339478 aeson,unknown,Data.Aeson.Types.FromJSON,ConstructorNames,src/Data/Aeson/Types/FromJSON.hs:1096:7-22,"class ConstructorNames a where constructorNames' :: (String -> t) -> Tagged2 a (DList.DList t)",1096,1097,2025-11-07 11:41:48.339483,2025-11-07 11:41:48.339483 aeson,unknown,Data.Aeson.Types.FromJSON,FromTaggedObject,src/Data/Aeson/Types/FromJSON.hs:1175:7-22,"class FromTaggedObject arity f where parseFromTaggedObject :: Text :* String :* TypeName :* Options :* FromArgs arity a -> Object -> Maybe (Parser (f a))",1175,1181,2025-11-07 11:41:48.339489,2025-11-07 11:41:48.339489 aeson,unknown,Data.Aeson.Types.ToJSON,RecordToPairs,src/Data/Aeson/Types/ToJSON.hs:1112:7-19,"class RecordToPairs enc pairs arity f where recordToPairs :: Options -> ToArgs enc arity a -> f a -> pairs",1112,1117,2025-11-07 11:41:48.339722,2025-11-07 11:41:48.339722 aeson,unknown,Data.Aeson.Types.FromJSON,FromTaggedObject',src/Data/Aeson/Types/FromJSON.hs:1207:7-23,"class FromTaggedObject' arity f isRecord where parseFromTaggedObject' :: String :* ConName :* TypeName :* Options :* FromArgs arity a -> Object -> Tagged isRecord (Parser (f a))",1207,1211,2025-11-07 11:41:48.339495,2025-11-07 11:41:48.339495 aeson,unknown,Data.Aeson.Types.FromJSON,ConsFromJSON,src/Data/Aeson/Types/FromJSON.hs:1237:7-18,"class ConsFromJSON arity f where consParseJSON :: ConName :* TypeName :* Options :* FromArgs arity a -> Value -> Parser (f a)",1237,1240,2025-11-07 11:41:48.339502,2025-11-07 11:41:48.339502 aeson,unknown,Data.Aeson.Types.FromJSON,ConsFromJSON',src/Data/Aeson/Types/FromJSON.hs:1242:7-19,"class ConsFromJSON' arity f isRecord where consParseJSON' :: ConName :* TypeName :* Options :* FromArgs arity a -> Value -> Tagged isRecord (Parser (f a))",1242,1245,2025-11-07 11:41:48.339510,2025-11-07 11:41:48.339510 aeson,unknown,Data.Aeson.Types.FromJSON,FieldNames,src/Data/Aeson/Types/FromJSON.hs:1294:7-16,"class FieldNames f where fieldNames :: f a -> [String] -> [String]",1294,1295,2025-11-07 11:41:48.339517,2025-11-07 11:41:48.339517 aeson,unknown,Data.Aeson.Types.FromJSON,RecordFromJSON,src/Data/Aeson/Types/FromJSON.hs:1307:7-20,"class RecordFromJSON arity f where recordParseJSON :: Bool :* ConName :* TypeName :* Options :* FromArgs arity a -> Object -> Parser (f a)",1307,1310,2025-11-07 11:41:48.339522,2025-11-07 11:41:48.339522 aeson,unknown,Data.Aeson.Types.FromJSON,RecordFromJSON',src/Data/Aeson/Types/FromJSON.hs:1332:7-21,"class RecordFromJSON' arity f where recordParseJSON' :: ConName :* TypeName :* Options :* FromArgs arity a -> Object -> Parser (f a)",1332,1335,2025-11-07 11:41:48.339528,2025-11-07 11:41:48.339528 aeson,unknown,Data.Aeson.Types.FromJSON,ProductFromJSON,src/Data/Aeson/Types/FromJSON.hs:1394:7-21,"class ProductFromJSON arity f where productParseJSON :: ConName :* TypeName :* Options :* FromArgs arity a -> Array -> Int -> Int -> Parser (f a)",1394,1397,2025-11-07 11:41:48.339534,2025-11-07 11:41:48.339534 aeson,unknown,Data.Aeson.Types.FromJSON,FromPair,src/Data/Aeson/Types/FromJSON.hs:1417:7-14,"class FromPair arity f where parsePair :: Key :* TypeName :* Options :* FromArgs arity a -> Value -> Maybe (Parser (f a))",1417,1421,2025-11-07 11:41:48.339540,2025-11-07 11:41:48.339540 aeson,unknown,Data.Aeson.Types.FromJSON,FromUntaggedValue,src/Data/Aeson/Types/FromJSON.hs:1444:7-23,"class FromUntaggedValue arity f where parseUntaggedValue :: TypeName :* Options :* FromArgs arity a -> Value -> Parser (f a)",1444,1447,2025-11-07 11:41:48.339546,2025-11-07 11:41:48.339546 aeson,unknown,Data.Aeson.Types.ToJSON,GToJSON',src/Data/Aeson/Types/ToJSON.hs:168:7-14,"class GToJSON' enc arity f where gToJSON :: Options -> ToArgs enc arity a -> f a -> enc",168,177,2025-11-07 11:41:48.339620,2025-11-07 11:41:48.339620 aeson,unknown,Data.Aeson.Types.ToJSON,ToJSON,src/Data/Aeson/Types/ToJSON.hs:302:7-12,"class ToJSON a where toJSON :: a -> Value default toJSON :: (Generic a, GToJSON' Value Zero (Rep a)) => a -> Value toJSON = genericToJSON defaultOptions toEncoding :: a -> Encoding toEncoding = E.value . toJSON toJSONList :: [a] -> Value toJSONList = listValue toJSON toEncodingList :: [a] -> Encoding toEncodingList = listEncoding toEncoding",302,334,2025-11-07 11:41:48.339627,2025-11-07 11:41:48.339627 aeson,unknown,Data.Aeson.Types.ToJSON,KeyValue,src/Data/Aeson/Types/ToJSON.hs:346:7-14,"class KeyValue kv where (.=) :: ToJSON v => Key -> v -> kv infixr 8 .=",346,348,2025-11-07 11:41:48.339635,2025-11-07 11:41:48.339635 aeson,unknown,Data.Aeson.Types.ToJSON,ToJSONKey,src/Data/Aeson/Types/ToJSON.hs:485:7-15,"class ToJSONKey a where toJSONKey :: ToJSONKeyFunction a default toJSONKey :: ToJSON a => ToJSONKeyFunction a toJSONKey = ToJSONKeyValue toJSON toEncoding toJSONKeyList :: ToJSONKeyFunction [a] default toJSONKeyList :: ToJSON a => ToJSONKeyFunction [a] toJSONKeyList = ToJSONKeyValue toJSON toEncoding",485,497,2025-11-07 11:41:48.339641,2025-11-07 11:41:48.339641 aeson,unknown,Data.Aeson.Types.ToJSON,GToJSONKey,src/Data/Aeson/Types/ToJSON.hs:563:26-35,class GetConName f => GToJSONKey f,563,563,2025-11-07 11:41:48.339648,2025-11-07 11:41:48.339648 aeson,unknown,Data.Aeson.Types.ToJSON,ToJSON1,src/Data/Aeson/Types/ToJSON.hs:615:7-13,"class ToJSON1 f where liftToJSON :: (a -> Value) -> ([a] -> Value) -> f a -> Value default liftToJSON :: (Generic1 f, GToJSON' Value One (Rep1 f)) => (a -> Value) -> ([a] -> Value) -> f a -> Value liftToJSON = genericLiftToJSON defaultOptions liftToJSONList :: (a -> Value) -> ([a] -> Value) -> [f a] -> Value liftToJSONList f g = listValue (liftToJSON f g) liftToEncoding :: (a -> Encoding) -> ([a] -> Encoding) -> f a -> Encoding default liftToEncoding :: (Generic1 f, GToJSON' Encoding One (Rep1 f)) => (a -> Encoding) -> ([a] -> Encoding) -> f a -> Encoding liftToEncoding = genericLiftToEncoding defaultOptions liftToEncodingList :: (a -> Encoding) -> ([a] -> Encoding) -> [f a] -> Encoding liftToEncodingList f g = listEncoding (liftToEncoding f g)",615,633,2025-11-07 11:41:48.339653,2025-11-07 11:41:48.339653 aeson,unknown,Data.Aeson.Types.ToJSON,ToJSON2,src/Data/Aeson/Types/ToJSON.hs:660:7-13,"class ToJSON2 f where liftToJSON2 :: (a -> Value) -> ([a] -> Value) -> (b -> Value) -> ([b] -> Value) -> f a b -> Value liftToJSONList2 :: (a -> Value) -> ([a] -> Value) -> (b -> Value) -> ([b] -> Value) -> [f a b] -> Value liftToJSONList2 fa ga fb gb = listValue (liftToJSON2 fa ga fb gb) liftToEncoding2 :: (a -> Encoding) -> ([a] -> Encoding) -> (b -> Encoding) -> ([b] -> Encoding) -> f a b -> Encoding liftToEncodingList2 :: (a -> Encoding) -> ([a] -> Encoding) -> (b -> Encoding) -> ([b] -> Encoding) -> [f a b] -> Encoding liftToEncodingList2 fa ga fb gb = listEncoding (liftToEncoding2 fa ga fb gb)",660,667,2025-11-07 11:41:48.339666,2025-11-07 11:41:48.339666 aeson,unknown,Data.Aeson.Types.ToJSON,SumToJSON,src/Data/Aeson/Types/ToJSON.hs:879:7-15,"class SumToJSON enc arity f allNullary where sumToJSON :: Options -> ToArgs enc arity a -> f a -> Tagged allNullary enc",879,881,2025-11-07 11:41:48.339678,2025-11-07 11:41:48.339678 aeson,unknown,Data.Aeson.Types.ToJSON,FromString,src/Data/Aeson/Types/ToJSON.hs:933:7-16,"class FromString enc where fromString :: String -> enc",933,934,2025-11-07 11:41:48.339684,2025-11-07 11:41:48.339684 aeson,unknown,Data.Aeson.Types.ToJSON,TaggedObject,src/Data/Aeson/Types/ToJSON.hs:944:7-18,"class TaggedObject enc arity f where taggedObject :: Options -> ToArgs enc arity a -> Key -> Key -> f a -> enc",944,947,2025-11-07 11:41:48.339689,2025-11-07 11:41:48.339689 aeson,unknown,Data.Aeson.Types.ToJSON,TaggedObject',src/Data/Aeson/Types/ToJSON.hs:978:7-19,"class TaggedObject' enc pairs arity f isRecord where taggedObject' :: Options -> ToArgs enc arity a -> Key -> f a -> Tagged isRecord pairs",978,980,2025-11-07 11:41:48.339694,2025-11-07 11:41:48.339694 aeson,unknown,Data.Aeson.Types.ToJSON,GetConName,src/Data/Aeson/Types/ToJSON.hs:1003:7-16,"class GetConName f where getConName :: f a -> String",1003,1004,2025-11-07 11:41:48.339700,2025-11-07 11:41:48.339700 aeson,unknown,Data.Aeson.Types.ToJSON,SumToJSON',src/Data/Aeson/Types/ToJSON.hs:1030:7-16,"class SumToJSON' s enc arity f where sumToJSON' :: Options -> ToArgs enc arity a -> f a -> Tagged s enc",1030,1032,2025-11-07 11:41:48.339705,2025-11-07 11:41:48.339705 aeson,unknown,Data.Aeson.Types.ToJSON,ConsToJSON,src/Data/Aeson/Types/ToJSON.hs:1071:7-16,"class ConsToJSON enc arity f where consToJSON :: Options -> ToArgs enc arity a -> f a -> enc",1071,1073,2025-11-07 11:41:48.339711,2025-11-07 11:41:48.339711 aeson,unknown,Data.Aeson.Types.ToJSON,ConsToJSON',src/Data/Aeson/Types/ToJSON.hs:1075:7-17,"class ConsToJSON' enc arity f isRecord where consToJSON' :: Options -> ToArgs enc arity a -> f a -> Tagged isRecord enc",1075,1077,2025-11-07 11:41:48.339716,2025-11-07 11:41:48.339716 aeson,unknown,Data.Aeson.Types.ToJSON,WriteProduct,src/Data/Aeson/Types/ToJSON.hs:1179:7-18,"class WriteProduct arity f where writeProduct :: Options -> ToArgs Value arity a -> VM.MVector s Value -> Int "" index"" -> Int "" length"" -> f a -> ST s ()",1179,1186,2025-11-07 11:41:48.339727,2025-11-07 11:41:48.339727 aeson,unknown,Data.Aeson.Types.ToJSON,EncodeProduct,src/Data/Aeson/Types/ToJSON.hs:1207:7-19,"class EncodeProduct arity f where encodeProduct :: Options -> ToArgs Encoding arity a -> f a -> Encoding' E.InArray",1207,1209,2025-11-07 11:41:48.339734,2025-11-07 11:41:48.339734 aeson,unknown,Data.Aeson.Types.ToJSON,FromPairs,src/Data/Aeson/Types/ToJSON.hs:2753:23-31,"class Monoid pairs => FromPairs enc pairs | enc -> pairs where fromPairs :: pairs -> enc",2753,2754,2025-11-07 11:41:48.339740,2025-11-07 11:41:48.339740 aeson,unknown,Data.Aeson.Types.ToJSON,KeyValuePair,src/Data/Aeson/Types/ToJSON.hs:2767:20-31,"class Monoid kv => KeyValuePair v kv where pair :: Key -> v -> kv",2767,2768,2025-11-07 11:41:48.339745,2025-11-07 11:41:48.339745 aeson,unknown,Data.Aeson.Internal.TH,MonadFix_,src/Data/Aeson/Internal/TH.hs:61:7-15,"class MonadFix_ m where mfix_ :: (a -> m a) -> m a",61,62,2025-11-07 11:41:48.339750,2025-11-07 11:41:48.339750 aeson,unknown,Data.Aeson.Decoding.Internal,AsError,src/Data/Aeson/Decoding/Internal.hs:6:10-16,"class AsError t where tkErr :: e -> t k e",6,6,2025-11-07 11:41:48.339755,2025-11-07 11:41:48.339755 amazonka,unknown,Amazonka.Auth.Exception,AsAuthError,src/Amazonka/Auth/Exception.hs:38:7-17,"class AsAuthError a where _AuthError :: Prism' a AuthError {-# MINIMAL _AuthError #-} _RetrievalError :: Prism' a HttpException _MissingEnvError :: Prism' a Text _MissingFileError :: Prism' a FilePath _InvalidFileError :: Prism' a Text _InvalidIAMError :: Prism' a Text _RetrievalError = _AuthError . _RetrievalError _MissingEnvError = _AuthError . _MissingEnvError _MissingFileError = _AuthError . _MissingFileError _InvalidFileError = _AuthError . _InvalidFileError _InvalidIAMError = _AuthError . _InvalidIAMError",38,64,2025-11-07 11:41:53.373711,2025-11-07 11:41:53.373711 amazonka-core,unknown,Amazonka.Types,AsError,src/Amazonka/Types.hs:380:7-13,"class AsError a where _Error :: Prism' a Error {-# MINIMAL _Error #-} _TransportError :: Prism' a Client.HttpException _SerializeError :: Prism' a SerializeError _ServiceError :: Prism' a ServiceError _TransportError = _Error . _TransportError _SerializeError = _Error . _SerializeError _ServiceError = _Error . _ServiceError",380,397,2025-11-07 11:41:54.572778,2025-11-07 11:41:54.572778 amazonka-core,unknown,Amazonka.Types,AWSRequest,src/Amazonka/Types.hs:655:7-16,"class AWSRequest a where type AWSResponse a :: Type request :: (Service -> Service) "" Overrides applied to the default 'Service'."" -> a -> Request a response :: MonadResource m => (ByteStringLazy -> IO ByteStringLazy) "" Raw response body hook."" -> Service -> Proxy a -> ClientResponse ClientBody -> m (Either Error (ClientResponse (AWSResponse a)))",655,672,2025-11-07 11:41:54.572799,2025-11-07 11:41:54.572799 amazonka-core,unknown,Amazonka.Pager,AWSPager,src/Amazonka/Pager.hs:24:23-30,"class AWSRequest a => AWSPager a where page :: a -> AWSResponse a -> Maybe a",24,25,2025-11-07 11:41:54.572810,2025-11-07 11:41:54.572810 amazonka-core,unknown,Amazonka.Pager,AWSTruncated,src/Amazonka/Pager.hs:29:7-18,"class AWSTruncated a where truncated :: a -> Bool",29,30,2025-11-07 11:41:54.572816,2025-11-07 11:41:54.572816 amazonka-core,unknown,Amazonka.Data.ByteString,ToByteString,src/Amazonka/Data/ByteString.hs:37:7-18,"class ToByteString a where toBS :: a -> ByteString default toBS :: ToText a => a -> ByteString toBS = Text.encodeUtf8 . toText",37,40,2025-11-07 11:41:54.572821,2025-11-07 11:41:54.572821 amazonka-core,unknown,Amazonka.Data.Path,ToPath,src/Amazonka/Data/Path.hs:33:7-12,"class ToPath a where toPath :: a -> ByteString",33,34,2025-11-07 11:41:54.572828,2025-11-07 11:41:54.572828 amazonka-core,unknown,Amazonka.Data.Headers,ToHeaders,src/Amazonka/Data/Headers.hs:52:7-15,"class ToHeaders a where toHeaders :: a -> [Header]",52,53,2025-11-07 11:41:54.572833,2025-11-07 11:41:54.572833 amazonka-core,unknown,Amazonka.Data.Headers,ToHeader,src/Amazonka/Data/Headers.hs:58:7-14,"class ToHeader a where toHeader :: HeaderName -> a -> [Header] default toHeader :: ToText a => HeaderName -> a -> [Header] toHeader k = toHeader k . toText",58,61,2025-11-07 11:41:54.572838,2025-11-07 11:41:54.572838 amazonka-core,unknown,Amazonka.Data.Text,FromText,src/Amazonka/Data/Text.hs:36:7-14,"class FromText a where fromText :: Text -> Either String a",36,37,2025-11-07 11:41:54.572845,2025-11-07 11:41:54.572845 amazonka-core,unknown,Amazonka.Data.Text,ToText,src/Amazonka/Data/Text.hs:88:7-12,"class ToText a where toText :: a -> Text",88,89,2025-11-07 11:41:54.572850,2025-11-07 11:41:54.572850 amazonka-core,unknown,Amazonka.Data.Log,ToLog,src/Amazonka/Data/Log.hs:29:7-11,"class ToLog a where build :: a -> ByteStringBuilder",29,31,2025-11-07 11:41:54.572855,2025-11-07 11:41:54.572855 amazonka-core,unknown,Amazonka.Data.Query,ToQuery,src/Amazonka/Data/Query.hs:124:7-13,"class ToQuery a where toQuery :: a -> QueryString default toQuery :: ToText a => a -> QueryString toQuery = toQuery . toText",124,127,2025-11-07 11:41:54.572861,2025-11-07 11:41:54.572861 amazonka-core,unknown,Amazonka.Data.XML,FromXML,src/Amazonka/Data/XML.hs:89:7-13,"class FromXML a where parseXML :: [Node] -> Either String a",89,90,2025-11-07 11:41:54.572867,2025-11-07 11:41:54.572867 amazonka-core,unknown,Amazonka.Data.XML,ToElement,src/Amazonka/Data/XML.hs:116:7-15,"class ToElement a where toElement :: a -> Element",116,117,2025-11-07 11:41:54.572872,2025-11-07 11:41:54.572872 amazonka-core,unknown,Amazonka.Data.XML,ToXML,src/Amazonka/Data/XML.hs:166:7-11,"class ToXML a where toXML :: a -> XML",166,167,2025-11-07 11:41:54.572877,2025-11-07 11:41:54.572877 amazonka-core,unknown,Amazonka.Data.Time,TimeFormat,src/Amazonka/Data/Time.hs:76:7-16,"class TimeFormat a where format :: proxy a -> String",76,77,2025-11-07 11:41:54.572882,2025-11-07 11:41:54.572882 amazonka-core,unknown,Amazonka.Data.Body,ToHashedBody,src/Amazonka/Data/Body.hs:368:7-18,"class ToHashedBody a where toHashed :: a -> HashedBody",368,370,2025-11-07 11:41:54.572887,2025-11-07 11:41:54.572887 amazonka-core,unknown,Amazonka.Data.Body,ToBody,src/Amazonka/Data/Body.hs:408:7-12,"class ToBody a where toBody :: a -> RequestBody default toBody :: ToHashedBody a => a -> RequestBody toBody = Hashed . toHashed",408,412,2025-11-07 11:41:54.572892,2025-11-07 11:41:54.572892 amazonka-s3-encryption,unknown,Amazonka.S3.Encryption.Encrypt,ToEncrypted,src/Amazonka/S3/Encryption/Encrypt.hs:88:28-38,"class AddInstructions a => ToEncrypted a where encryptWith :: a -> Location -> Envelope -> Encrypted a",88,90,2025-11-07 11:42:00.999558,2025-11-07 11:42:00.999558 amazonka-s3-encryption,unknown,Amazonka.S3.Encryption.Instructions,AddInstructions,src/Amazonka/S3/Encryption/Instructions.hs:27:23-37,"class AWSRequest a => AddInstructions a where addInstructions :: a -> (S3.BucketName, S3.ObjectKey)",27,29,2025-11-07 11:42:00.999573,2025-11-07 11:42:00.999573 amazonka-s3-encryption,unknown,Amazonka.S3.Encryption.Instructions,RemoveInstructions,src/Amazonka/S3/Encryption/Instructions.hs:100:23-40,"class AWSRequest a => RemoveInstructions a where removeInstructions :: a -> (S3.BucketName, S3.ObjectKey)",100,102,2025-11-07 11:42:00.999580,2025-11-07 11:42:00.999580 amazonka-s3-encryption,unknown,Amazonka.S3.Encryption.Body,ToChunkedBody,src/Amazonka/S3/Encryption/Body.hs:18:7-19,"class ToChunkedBody a where toChunked :: a -> ChunkedBody",18,19,2025-11-07 11:42:00.999587,2025-11-07 11:42:00.999587 ansi-wl-pprint,unknown,Text.PrettyPrint.ANSI.Leijen.Internal,Pretty,Text/PrettyPrint/ANSI/Leijen/Internal.hs:414:7-12,"class Pretty a where pretty :: a -> Doc prettyList :: [a] -> Doc prettyList = list . map pretty",414,417,2025-11-07 11:42:09.695164,2025-11-07 11:42:09.695164 appar,unknown,Text.Appar.Input,Input,Text/Appar/Input.hs:13:17-21,"class Eq inp => Input inp where car :: inp -> Char cdr :: inp -> inp nil :: inp isNil :: inp -> Bool",13,21,2025-11-07 11:42:12.814210,2025-11-07 11:42:12.814210 arrows,unknown,Control.Arrow.Operations,ArrowReader,Control/Arrow/Operations.hs:62:18-28,"class Arrow a => ArrowReader r a | a -> r where readState :: a b r newReader :: a e b -> a (e, r) b",62,75,2025-11-07 11:42:13.904741,2025-11-07 11:42:13.904741 arrows,unknown,Control.Arrow.Operations,ArrowState,Control/Arrow/Operations.hs:81:18-27,"class Arrow a => ArrowState s a | a -> s where fetch :: a e s store :: a s ()",81,85,2025-11-07 11:42:13.904752,2025-11-07 11:42:13.904752 arrows,unknown,Control.Arrow.Operations,ArrowWriter,Control/Arrow/Operations.hs:89:30-40,"class (Monoid w, Arrow a) => ArrowWriter w a | a -> w where write :: a w () newWriter :: a e b -> a e (b, w)",89,102,2025-11-07 11:42:13.904758,2025-11-07 11:42:13.904758 arrows,unknown,Control.Arrow.Operations,ArrowError,Control/Arrow/Operations.hs:110:18-27,"class Arrow a => ArrowError ex a | a -> ex where raise :: a ex b handle :: a e b "" computation that may raise errors"" -> a (e, ex) b "" computation to handle errors"" -> a e b handle f h = tryInUnless f (arr snd) h tryInUnless :: a e b "" computation that may raise errors"" -> a (e, b) c "" computation to receive successful results"" -> a (e, ex) c "" computation to handle errors"" -> a e c newError :: a e b -> a e (Either ex b) newError f = handle (f >>> arr Right) (arr (Left . snd))",110,146,2025-11-07 11:42:13.904764,2025-11-07 11:42:13.904764 arrows,unknown,Control.Arrow.Operations,ArrowCircuit,Control/Arrow/Operations.hs:168:22-33,"class ArrowLoop a => ArrowCircuit a where delay :: b "" the value to return initially."" -> a b b "" an arrow that propagates its input with a one-tick delay.""",168,172,2025-11-07 11:42:13.904775,2025-11-07 11:42:13.904775 arrows,unknown,Control.Arrow.Transformer,ArrowTransformer,Control/Arrow/Transformer.hs:20:33-48,"class (Arrow a, Arrow (f a)) => ArrowTransformer f a where lift :: a b c -> f a b c",20,29,2025-11-07 11:42:13.904782,2025-11-07 11:42:13.904782 arrows,unknown,Control.Arrow.Internals,ArrowAddState,Control/Arrow/Internals.hs:52:37-49,"class (ArrowState s a, Arrow a') => ArrowAddState s a a' | a -> a' where liftState :: a' e b -> a e b elimState :: a e b -> a' (e, s) (b, s)",52,72,2025-11-07 11:42:13.904788,2025-11-07 11:42:13.904788 arrows,unknown,Control.Arrow.Internals,ArrowAddReader,Control/Arrow/Internals.hs:96:38-51,"class (ArrowReader r a, Arrow a') => ArrowAddReader r a a' | a -> a' where liftReader :: a' e b -> a e b elimReader :: a e b -> a' (e, r) b",96,115,2025-11-07 11:42:13.904794,2025-11-07 11:42:13.904794 arrows,unknown,Control.Arrow.Internals,ArrowAddWriter,Control/Arrow/Internals.hs:139:38-51,"class (ArrowWriter w a, Arrow a') => ArrowAddWriter w a a' | a -> a' where liftWriter :: a' e b -> a e b elimWriter :: a e b -> a' e (b, w)",139,159,2025-11-07 11:42:13.904800,2025-11-07 11:42:13.904800 arrows,unknown,Control.Arrow.Internals,ArrowAddError,Control/Arrow/Internals.hs:188:38-50,"class (ArrowError ex a, Arrow a') => ArrowAddError ex a a' | a -> a' where liftError :: a' e b -> a e b elimError :: a e b -> a' (e, ex) b -> a' e b",188,207,2025-11-07 11:42:13.904806,2025-11-07 11:42:13.904806 arrows,unknown,Control.Arrow.Internals,ArrowAddStream,Control/Arrow/Internals.hs:231:37-50,"class (ArrowCircuit a, Arrow a') => ArrowAddStream a a' | a -> a' where liftStream :: a' e b -> a e b elimStream :: a (e, b) c -> a' (e, Stream b) (Stream c)",231,254,2025-11-07 11:42:13.904812,2025-11-07 11:42:13.904812 asn1-encoding,unknown,Data.ASN1.Encoding,ASN1Decoding,Data/ASN1/Encoding.hs:27:7-18,"class ASN1Decoding a where decodeASN1 :: a -> L.ByteString -> Either ASN1Error [ASN1]",27,29,2025-11-07 11:42:15.053067,2025-11-07 11:42:15.053067 asn1-encoding,unknown,Data.ASN1.Encoding,ASN1DecodingRepr,Data/ASN1/Encoding.hs:32:7-22,"class ASN1DecodingRepr a where decodeASN1Repr :: a -> L.ByteString -> Either ASN1Error [ASN1Repr]",32,34,2025-11-07 11:42:15.053078,2025-11-07 11:42:15.053078 asn1-encoding,unknown,Data.ASN1.Encoding,ASN1Encoding,Data/ASN1/Encoding.hs:37:7-18,"class ASN1Encoding a where encodeASN1 :: a -> [ASN1] -> L.ByteString",37,39,2025-11-07 11:42:15.053085,2025-11-07 11:42:15.053085 asn1-types,unknown,Data.ASN1.Types,ASN1Object,Data/ASN1/Types.hs:63:7-16,"class ASN1Object a where toASN1 :: a -> ASN1S fromASN1 :: [ASN1] -> Either String (a, [ASN1])",63,69,2025-11-07 11:42:17.180256,2025-11-07 11:42:17.180256 asn1-types,unknown,Data.ASN1.OID,OIDable,Data/ASN1/OID.hs:20:7-13,"class OIDable a where getObjectID :: a -> OID",20,22,2025-11-07 11:42:17.180265,2025-11-07 11:42:17.180265 asn1-types,unknown,Data.ASN1.OID,OIDNameable,Data/ASN1/OID.hs:25:7-17,"class OIDNameable a where fromObjectID :: OID -> Maybe a",25,27,2025-11-07 11:42:17.180271,2025-11-07 11:42:17.180271 assoc,unknown,Data.Bifunctor.Swap,Swap,src/Data/Bifunctor/Swap.hs:36:7-10,"class Swap p where swap :: p a b -> p b a",36,37,2025-11-07 11:42:18.253988,2025-11-07 11:42:18.253988 assoc,unknown,Data.Bifunctor.Assoc,Assoc,src/Data/Bifunctor/Assoc.hs:29:22-26,"class Bifunctor p => Assoc p where assoc :: p (p a b) c -> p a (p b c) unassoc :: p a (p b c) -> p (p a b) c",29,31,2025-11-07 11:42:18.254001,2025-11-07 11:42:18.254001 attoparsec,unknown,Data.Attoparsec.Internal.Types,Chunk,Data/Attoparsec/Internal/Types.hs:224:19-23,"class Monoid c => Chunk c where type ChunkElem c nullChunk :: c -> Bool pappendChunk :: State c -> c -> State c atBufferEnd :: c -> State c -> Pos bufferElemAt :: c -> Pos -> State c -> Maybe (ChunkElem c, Int) chunkElemToChar :: c -> ChunkElem c -> Char",224,236,2025-11-07 11:42:21.523406,2025-11-07 11:42:21.523406 barbies,unknown,Clothes,ArbitraryF,test/Clothes.hs:160:7-16,"class ArbitraryF f where arbitraryf :: Gen (NatTransf [] f) flattenf :: NatTransf f []",160,162,2025-11-07 11:42:24.968493,2025-11-07 11:42:24.968493 barbies,unknown,Legacy.Clothes,ArbitraryF,test-legacy/Legacy/Clothes.hs:89:7-16,"class ArbitraryF f where arbitraryf :: Gen (NatTransf [] f) flattenf :: NatTransf f []",89,91,2025-11-07 11:42:24.968507,2025-11-07 11:42:24.968507 barbies,unknown,Barbies.Generics.Functor,GFunctor,src/Barbies/Generics/Functor.hs:14:7-14,"class GFunctor (n :: Nat) f g repbf repbg where gmap :: Proxy n -> (forall a. f a -> g a) -> repbf x -> repbg x",14,15,2025-11-07 11:42:24.968515,2025-11-07 11:42:24.968515 barbies,unknown,Barbies.Generics.Distributive,GDistributive,src/Barbies/Generics/Distributive.hs:17:22-34,"class (Functor f) => GDistributive (n :: Nat) f repbg repbfg where gdistribute :: Proxy n -> f (repbg x) -> repbfg x",17,18,2025-11-07 11:42:24.968522,2025-11-07 11:42:24.968522 barbies,unknown,Barbies.Generics.Constraints,GConstraints,src/Barbies/Generics/Constraints.hs:21:7-18,"class GConstraints n c f repbx repbf repbdf where gaddDicts :: GAll n c repbx => repbf x -> repbdf x",21,22,2025-11-07 11:42:24.968528,2025-11-07 11:42:24.968528 barbies,unknown,Barbies.Generics.Bare,GBare,src/Barbies/Generics/Bare.hs:17:7-11,"class GBare (n :: Nat) repbi repbb where gstrip :: Proxy n -> repbi x -> repbb x gcover :: Proxy n -> repbb x -> repbi x",17,19,2025-11-07 11:42:24.968534,2025-11-07 11:42:24.968534 barbies,unknown,Barbies.Generics.Traversable,GTraversable,src/Barbies/Generics/Traversable.hs:11:7-18,"class GTraversable n f g repbf repbg where gtraverse :: Applicative t => Proxy n -> (forall a. f a -> t (g a)) -> repbf x -> t (repbg x)",11,17,2025-11-07 11:42:24.968540,2025-11-07 11:42:24.968540 barbies,unknown,Barbies.Generics.Applicative,GApplicative,src/Barbies/Generics/Applicative.hs:17:7-18,"class GApplicative n (f :: k -> Type) (g :: k -> Type) repbf repbg repbfg where gprod :: Proxy n -> Proxy f -> Proxy g -> repbf x -> repbg x -> repbfg x gpure :: (f ~ g, repbf ~ repbg) => Proxy n -> Proxy f -> Proxy repbf -> Proxy repbfg -> (forall a. f a) -> repbf x",17,33,2025-11-07 11:42:24.968546,2025-11-07 11:42:24.968546 barbies,unknown,Barbies.Internal.ApplicativeT,ApplicativeT,src/Barbies/Internal/ApplicativeT.hs:73:21-32,"class FunctorT t => ApplicativeT (t :: (k -> Type) -> (k' -> Type)) where tpure :: (forall a. f a) -> t f x tprod :: t f x -> t g x -> t (f `Product` g) x default tpure :: CanDeriveApplicativeT t f f x => (forall a. f a) -> t f x tpure = gtpureDefault default tprod :: CanDeriveApplicativeT t f g x => t f x -> t g x -> t (f `Product` g) x tprod = gtprodDefault",73,94,2025-11-07 11:42:24.968555,2025-11-07 11:42:24.968555 barbies,unknown,Barbies.Internal.MonadT,MonadT,src/Barbies/Internal/MonadT.hs:55:21-26,"class FunctorT t => MonadT t where tlift :: f a -> t f a tjoin :: t (t f) a -> t f a tjoin = tembed id tembed :: MonadT t => (forall x. f x -> t g x) -> t f a -> t g a tembed h = tjoin . tmap h {-# MINIMAL tlift, tjoin | tlift, tembed #-}",55,71,2025-11-07 11:42:24.968565,2025-11-07 11:42:24.968565 barbies,unknown,Barbies.Internal.ConstraintsB,ConstraintsB,src/Barbies/Internal/ConstraintsB.hs:82:21-32,"class FunctorB b => ConstraintsB (b :: (k -> Type) -> Type) where type AllB (c :: k -> Constraint) b :: Constraint type AllB c b = GAll 0 c (GAllRepB b) baddDicts :: forall c f. AllB c b => b f -> b (Dict c `Product` f) default baddDicts :: forall c f. (CanDeriveConstraintsB c b f, AllB c b) => b f -> b (Dict c `Product` f) baddDicts = gbaddDictsDefault",82,106,2025-11-07 11:42:24.968572,2025-11-07 11:42:24.968572 barbies,unknown,Barbies.Internal.FunctorT,FunctorT,src/Barbies/Internal/FunctorT.hs:51:7-14,"class FunctorT (t :: (k -> Type) -> k' -> Type) where tmap :: (forall a. f a -> g a) -> t f x -> t g x default tmap :: forall f g x. CanDeriveFunctorT t f g x => (forall a. f a -> g a) -> t f x -> t g x tmap = gtmapDefault",51,60,2025-11-07 11:42:24.968581,2025-11-07 11:42:24.968581 barbies,unknown,Barbies.Internal.TraversableB,TraversableB,src/Barbies/Internal/TraversableB.hs:43:21-32,"class FunctorB b => TraversableB (b :: (k -> Type) -> Type) where btraverse :: Applicative e => (forall a. f a -> e (g a)) -> b f -> e (b g) default btraverse :: (Applicative e, CanDeriveTraversableB b f g) => (forall a. f a -> e (g a)) -> b f -> e (b g) btraverse = gbtraverseDefault",43,51,2025-11-07 11:42:24.968589,2025-11-07 11:42:24.968589 barbies,unknown,Barbies.Internal.DistributiveB,DistributiveB,src/Barbies/Internal/DistributiveB.hs:66:23-35,"class (FunctorB b) => DistributiveB (b :: (k -> Type) -> Type) where bdistribute :: Functor f => f (b g) -> b (Compose f g) default bdistribute :: forall f g. CanDeriveDistributiveB b f g => Functor f => f (b g) -> b (Compose f g) bdistribute = gbdistributeDefault",66,73,2025-11-07 11:42:24.968597,2025-11-07 11:42:24.968597 barbies,unknown,Barbies.Internal.Dicts,ClassF,src/Barbies/Internal/Dicts.hs:50:18-23,class c (f a) => ClassF c f a,50,50,2025-11-07 11:42:24.968605,2025-11-07 11:42:24.968605 barbies,unknown,Barbies.Internal.Dicts,ClassFG,src/Barbies/Internal/Dicts.hs:55:24-30,class c (f a) (g a) => ClassFG c f g a,55,55,2025-11-07 11:42:24.968610,2025-11-07 11:42:24.968610 barbies,unknown,Barbies.Internal.DistributiveT,DistributiveT,src/Barbies/Internal/DistributiveT.hs:84:21-33,"class FunctorT t => DistributiveT (t :: (Type -> Type) -> i -> Type) where tdistribute :: Functor f => f (t g x) -> t (Compose f g) x default tdistribute :: forall f g x. CanDeriveDistributiveT t f g x => f (t g x) -> t (Compose f g) x tdistribute = gtdistributeDefault",84,92,2025-11-07 11:42:24.968615,2025-11-07 11:42:24.968615 barbies,unknown,Barbies.Internal.FunctorB,FunctorB,src/Barbies/Internal/FunctorB.hs:33:7-14,"class FunctorB (b :: (k -> Type) -> Type) where bmap :: (forall a. f a -> g a) -> b f -> b g default bmap :: forall f g. CanDeriveFunctorB b f g => (forall a. f a -> g a) -> b f -> b g bmap = gbmapDefault",33,40,2025-11-07 11:42:24.968624,2025-11-07 11:42:24.968624 barbies,unknown,Barbies.Internal.BareB,BareB,src/Barbies/Internal/BareB.hs:34:31-35,"class FunctorB (b Covered) => BareB b where bstrip :: b Covered Identity -> b Bare Identity bcover :: b Bare Identity -> b Covered Identity default bstrip :: CanDeriveBareB b => b Covered Identity -> b Bare Identity bstrip = gbstripDefault default bcover :: CanDeriveBareB b => b Bare Identity -> b Covered Identity bcover = gbcoverDefault",34,42,2025-11-07 11:42:24.968632,2025-11-07 11:42:24.968632 barbies,unknown,Barbies.Internal.ConstraintsT,ConstraintsT,src/Barbies/Internal/ConstraintsT.hs:78:21-32,"class FunctorT t => ConstraintsT (t :: (kl -> Type) -> (kr -> Type)) where type AllT (c :: k -> Constraint) t :: Constraint type AllT c t = GAll 1 c (GAllRepT t) taddDicts :: forall c f x. AllT c t => t f x -> t (Dict c `Product` f) x default taddDicts :: forall c f x. (CanDeriveConstraintsT c t f x, AllT c t) => t f x -> t (Dict c `Product` f) x taddDicts = gtaddDictsDefault",78,99,2025-11-07 11:42:24.968640,2025-11-07 11:42:24.968640 barbies,unknown,Barbies.Internal.TraversableT,TraversableT,src/Barbies/Internal/TraversableT.hs:52:21-32,"class FunctorT t => TraversableT (t :: (k -> Type) -> k' -> Type) where ttraverse :: Applicative e => (forall a. f a -> e (g a)) -> t f x -> e (t g x) default ttraverse :: (Applicative e, CanDeriveTraversableT t f g x) => (forall a. f a -> e (g a)) -> t f x -> e (t g x) ttraverse = ttraverseDefault",52,61,2025-11-07 11:42:24.968650,2025-11-07 11:42:24.968650 barbies,unknown,Barbies.Internal.ApplicativeB,ApplicativeB,src/Barbies/Internal/ApplicativeB.hs:63:21-32,"class FunctorB b => ApplicativeB (b :: (k -> Type) -> Type) where bpure :: (forall a. f a) -> b f bprod :: b f -> b g -> b (f `Product` g) default bpure :: CanDeriveApplicativeB b f f => (forall a. f a) -> b f bpure = gbpureDefault default bprod :: CanDeriveApplicativeB b f g => b f -> b g -> b (f `Product` g) bprod = gbprodDefault",63,84,2025-11-07 11:42:24.968698,2025-11-07 11:42:24.968698 barbies,unknown,Data.Generics.GenericN,GenericN,src/Data/Generics/GenericN.hs:71:8-15,"class (Coercible (Rep a) (RepN a), Generic a) => GenericN (a :: Type) where type RepN (a :: Type) :: Type -> Type type RepN a = Zip (Rep (Indexed a 0)) (Rep a) toN :: RepN a x -> a fromN :: a -> RepN a x",68,75,2025-11-07 11:42:24.968708,2025-11-07 11:42:24.968708 barbies,unknown,Data.Generics.GenericN,GenericP,src/Data/Generics/GenericN.hs:92:8-15,"class (Coercible (Rep a) (RepP n a), Generic a) => GenericP (n :: Nat) (a :: Type) where type RepP n a :: Type -> Type type RepP n a = Zip (Rep (FilterIndex n (Indexed a 0))) (Rep a) toP :: Proxy n -> RepP n a x -> a fromP :: Proxy n -> a -> RepP n a x",89,96,2025-11-07 11:42:24.968715,2025-11-07 11:42:24.968715 barbies,unknown,Data.Barbie.Internal.Product,ProductB,src/Data/Barbie/Internal/Product.hs:29:29-36,"class App.ApplicativeB b => ProductB (b :: (k -> Type) -> Type) where bprod :: b f -> b g -> b (f `Product` g) buniq :: (forall a. f a) -> b f default bprod :: CanDeriveProductB b f g => b f -> b g -> b (f `Product` g) bprod = gbprodDefault default buniq :: CanDeriveProductB b f f => (forall a. f a) -> b f buniq = gbuniqDefault",29,38,2025-11-07 11:42:24.968722,2025-11-07 11:42:24.968722 base64-bytestring,unknown,Tests,AllRepresentations,tests/Tests.hs:251:7-24,"class AllRepresentations a where allRepresentations :: a -> [a]",251,252,2025-11-07 11:42:33.916014,2025-11-07 11:42:33.916014 barbies,unknown,Data.Barbie.Internal.Product,GProductB,src/Data/Barbie/Internal/Product.hs:77:7-15,"class GProductB (f :: k -> Type) (g :: k -> Type) repbf repbg repbfg where gbprod :: Proxy f -> Proxy g -> repbf x -> repbg x -> repbfg x gbuniq :: (f ~ g, repbf ~ repbg) => Proxy f -> Proxy repbf -> Proxy repbfg -> (forall a. f a) -> repbf x",77,80,2025-11-07 11:42:24.968731,2025-11-07 11:42:24.968731 barbies,unknown,Data.Barbie.Internal.ProductC,ProductBC,src/Data/Barbie/Internal/ProductC.hs:32:39-47,"class (ConstraintsB b, ProductB b) => ProductBC (b :: (k -> Type) -> Type) where bdicts :: AllB c b => b (Dict c) default bdicts :: (CanDeriveProductBC c b, AllB c b) => b (Dict c) bdicts = gbdictsDefault",32,36,2025-11-07 11:42:24.968739,2025-11-07 11:42:24.968739 barbies,unknown,Data.Barbie.Internal.ProductC,GProductBC,src/Data/Barbie/Internal/ProductC.hs:73:7-16,"class GProductBC c repbx repbd where gbdicts :: GAll 0 c repbx => repbd x",73,74,2025-11-07 11:42:24.968746,2025-11-07 11:42:24.968746 base16,unknown,Internal,Harness,test/Internal.hs:83:8-14,"class (Eq bs, Show bs, Arbitrary bs, CoArbitrary bs, IsString bs) => Harness (a :: Impl) bs | a -> bs, bs -> a where label :: String encode :: bs -> bs decode :: bs -> Either Text bs lenient :: bs -> bs lower :: bs -> bs correct :: bs -> Bool validate :: bs -> Bool",77,93,2025-11-07 11:42:30.711864,2025-11-07 11:42:30.711864 base16,unknown,Internal,TextHarness,test/Internal.hs:157:6-16,"class Harness a cs => TextHarness (a :: Impl) cs bs | a -> cs, bs -> cs, cs -> a, cs -> bs where decodeWith_ :: (bs -> Either err cs) -> bs -> Either (Base16Error err) cs",156,159,2025-11-07 11:42:30.711883,2025-11-07 11:42:30.711883 basement,unknown,Basement.Cast,Cast,Basement/Cast.hs:49:7-10,"class Cast source destination where cast :: source -> destination default cast :: (PrimType source, PrimType destination, PrimSize source ~ PrimSize destination) => source -> destination cast a = runST $ do mba <- Block.new 1 Block.unsafeWrite mba 0 a Block.unsafeRead (Block.unsafeRecast mba) 0",49,60,2025-11-07 11:42:35.602344,2025-11-07 11:42:35.602344 basement,unknown,Basement.From,From,Basement/From.hs:72:7-10,"class From a b where from :: a -> b",72,73,2025-11-07 11:42:35.602362,2025-11-07 11:42:35.602362 basement,unknown,Basement.From,TryFrom,Basement/From.hs:89:7-13,"class TryFrom a b where tryFrom :: a -> Maybe b",89,90,2025-11-07 11:42:35.602368,2025-11-07 11:42:35.602368 basement,unknown,Basement.PrimType,PrimType,Basement/PrimType.hs:164:16-23,"class Eq ty => PrimType ty where type PrimSize ty :: Nat primSizeInBytes :: Proxy ty -> CountOf Word8 primShiftToBytes :: Proxy ty -> Int primBaUIndex :: ByteArray# -> Offset ty -> ty primMbaURead :: PrimMonad prim => MutableByteArray# (PrimState prim) "" mutable array to read from"" -> Offset ty "" index of the element to retrieve"" -> prim ty "" the element returned"" primMbaUWrite :: PrimMonad prim => MutableByteArray# (PrimState prim) "" mutable array to modify"" -> Offset ty "" index of the element to modify"" -> ty "" the new value to store"" -> prim () primAddrIndex :: Addr# -> Offset ty -> ty primAddrRead :: PrimMonad prim => Addr# -> Offset ty -> prim ty primAddrWrite :: PrimMonad prim => Addr# -> Offset ty -> ty -> prim ()",164,216,2025-11-07 11:42:35.602374,2025-11-07 11:42:35.602374 basement,unknown,Basement.PrimType,PrimMemoryComparable,Basement/PrimType.hs:657:7-26,class PrimMemoryComparable ty,657,657,2025-11-07 11:42:35.602388,2025-11-07 11:42:35.602388 basement,unknown,Basement.NormalForm,NormalForm,Basement/NormalForm.hs:19:7-16,"class NormalForm a where toNormalForm :: a -> ()",19,20,2025-11-07 11:42:35.602394,2025-11-07 11:42:35.602394 basement,unknown,Basement.IntegralConv,IntegralDownsize,Basement/IntegralConv.hs:37:7-22,"class IntegralDownsize a b where integralDownsize :: a -> b default integralDownsize :: a ~ b => a -> b integralDownsize = id integralDownsizeCheck :: a -> Maybe b",37,42,2025-11-07 11:42:35.602400,2025-11-07 11:42:35.602400 basement,unknown,Basement.IntegralConv,IntegralUpsize,Basement/IntegralConv.hs:48:7-20,"class IntegralUpsize a b where integralUpsize :: a -> b",48,49,2025-11-07 11:42:35.602406,2025-11-07 11:42:35.602406 basement,unknown,Basement.Monad,PrimMonad,Basement/Monad.hs:43:62-70,"class (Prelude.Functor m, Applicative m, Prelude.Monad m) => PrimMonad m where type PrimState m type PrimVar m :: * -> * primitive :: (State# (PrimState m) -> (# State# (PrimState m), a #)) -> m a primThrow :: Exception e => e -> m a unPrimMonad :: m a -> State# (PrimState m) -> (# State# (PrimState m), a #) primVarNew :: a -> m (PrimVar m a) primVarRead :: PrimVar m a -> m a primVarWrite :: PrimVar m a -> a -> m ()",43,60,2025-11-07 11:42:35.602411,2025-11-07 11:42:35.602411 basement,unknown,Basement.Monad,MonadFailure,Basement/Monad.hs:125:18-29,"class Monad m => MonadFailure m where type Failure m mFail :: Failure m -> m ()",125,131,2025-11-07 11:42:35.602421,2025-11-07 11:42:35.602421 basement,unknown,Basement.Bits,FiniteBitsOps,Basement/Bits.hs:61:7-19,"class FiniteBitsOps bits where numberOfBits :: bits -> CountOf Bool rotateL :: bits -> CountOf Bool -> bits rotateR :: bits -> CountOf Bool -> bits popCount :: bits -> CountOf Bool bitFlip :: bits -> bits countLeadingZeros :: bits -> CountOf Bool default countLeadingZeros :: BitOps bits => bits -> CountOf Bool countLeadingZeros n = loop stop azero where stop = numberOfBits n loop idx count | idx == azero = count | isBitSet n (sizeAsOffset idx) = count | otherwise = loop (fromMaybe azero (idx - 1)) (count + 1) countTrailingZeros :: bits -> CountOf Bool default countTrailingZeros :: BitOps bits => bits -> CountOf Bool countTrailingZeros n = loop azero where stop = numberOfBits n loop count | count == stop = count | isBitSet n (sizeAsOffset count) = count | otherwise = loop (count + 1)",61,97,2025-11-07 11:42:35.602426,2025-11-07 11:42:35.602426 basement,unknown,Basement.Bits,BitOps,Basement/Bits.hs:100:7-12,"class BitOps bits where (.&.) :: bits -> bits -> bits (.|.) :: bits -> bits -> bits (.^.) :: bits -> bits -> bits (.<<.) :: bits -> CountOf Bool -> bits (.>>.) :: bits -> CountOf Bool -> bits bit :: Offset Bool -> bits default bit :: Integral bits => Offset Bool -> bits bit n = 1 .<<. (offsetAsSize n) isBitSet :: bits -> Offset Bool -> Bool default isBitSet :: (Integral bits, Eq bits) => bits -> Offset Bool -> Bool isBitSet x n = x .&. (bit n) /= 0 setBit :: bits -> Offset Bool -> bits default setBit :: Integral bits => bits -> Offset Bool -> bits setBit x n = x .|. (bit n) clearBit :: bits -> Offset Bool -> bits default clearBit :: FiniteBitsOps bits => bits -> Offset Bool -> bits clearBit x n = x .&. (bitFlip (bit n))",100,124,2025-11-07 11:42:35.602441,2025-11-07 11:42:35.602441 basement,unknown,Basement.Endianness,ByteSwap,Basement/Endianness.hs:134:7-14,"class ByteSwap a where byteSwap :: a -> a",134,135,2025-11-07 11:42:35.602454,2025-11-07 11:42:35.602454 basement,unknown,Basement.Compat.NumLiteral,Integral,Basement/Compat/NumLiteral.hs:28:7-14,"class Integral a where fromInteger :: Integer -> a",28,29,2025-11-07 11:42:35.602459,2025-11-07 11:42:35.602459 basement,unknown,Basement.Compat.NumLiteral,Fractional,Basement/Compat/NumLiteral.hs:35:7-16,"class Fractional a where fromRational :: Rational -> a",35,36,2025-11-07 11:42:35.602464,2025-11-07 11:42:35.602464 basement,unknown,Basement.Compat.NumLiteral,HasNegation,Basement/Compat/NumLiteral.hs:41:7-17,"class HasNegation a where negate :: a -> a",41,42,2025-11-07 11:42:35.602469,2025-11-07 11:42:35.602469 basement,unknown,Basement.Numerical.Multiplicative,Multiplicative,Basement/Numerical/Multiplicative.hs:27:7-20,"class Multiplicative a where {-# MINIMAL midentity, (*) #-} midentity :: a (*) :: a -> a -> a (^) :: (IsNatural n, Enum n, IDivisible n) => a -> n -> a (^) = power",27,41,2025-11-07 11:42:35.602474,2025-11-07 11:42:35.602474 basement,unknown,Basement.Numerical.Multiplicative,IDivisible,Basement/Numerical/Multiplicative.hs:46:41-50,"class (Additive a, Multiplicative a) => IDivisible a where {-# MINIMAL (div, mod) | divMod #-} div :: a -> a -> a div a b = fst $ divMod a b mod :: a -> a -> a mod a b = snd $ divMod a b divMod :: a -> a -> (a, a) divMod a b = (div a b, mod a b)",46,53,2025-11-07 11:42:35.602481,2025-11-07 11:42:35.602481 basement,unknown,Basement.Numerical.Multiplicative,Divisible,Basement/Numerical/Multiplicative.hs:58:27-35,"class Multiplicative a => Divisible a where {-# MINIMAL (/) #-} (/) :: a -> a -> a",58,60,2025-11-07 11:42:35.602489,2025-11-07 11:42:35.602489 basement,unknown,Basement.Numerical.Additive,Additive,Basement/Numerical/Additive.hs:43:7-14,"class Additive a where {-# MINIMAL azero, (+) #-} azero :: a (+) :: a -> a -> a scale :: IsNatural n => n -> a -> a default scale :: (Enum n, IsNatural n) => n -> a -> a scale = scaleEnum",43,50,2025-11-07 11:42:35.602494,2025-11-07 11:42:35.602494 basement,unknown,Basement.Numerical.Subtractive,Subtractive,Basement/Numerical/Subtractive.hs:30:7-17,"class Subtractive a where type Difference a (-) :: a -> a -> Difference a",30,32,2025-11-07 11:42:35.602501,2025-11-07 11:42:35.602501 basement,unknown,Basement.Numerical.Number,IsIntegral,Basement/Numerical/Number.hs:18:36-45,"class (Integral a, Eq a, Ord a) => IsIntegral a where {-# MINIMAL toInteger #-} toInteger :: a -> Integer",18,20,2025-11-07 11:42:35.602507,2025-11-07 11:42:35.602507 basement,unknown,Basement.Numerical.Number,IsNatural,Basement/Numerical/Number.hs:23:23-31,"class IsIntegral a => IsNatural a where {-# MINIMAL toNatural #-} toNatural :: a -> Natural",23,25,2025-11-07 11:42:35.602569,2025-11-07 11:42:35.602569 basement,unknown,Basement.String.Encoding.Encoding,Encoding,Basement/String/Encoding/Encoding.hs:26:7-14,"class Encoding encoding where type Unit encoding type Error encoding encodingNext :: encoding "" only used for type deduction"" -> (Offset (Unit encoding) -> Unit encoding) "" method to access a given `Unit encoding` (see `unsafeIndexer`)"" -> Offset (Unit encoding) "" offset of the `Unit encoding` where starts the encoding of a given unicode"" -> Either (Error encoding) (Char, Offset (Unit encoding)) "" either successfully validated the `Unit encoding` and returned the next offset or fail with an `Error encoding`"" encodingWrite :: (PrimMonad st, Monad st) => encoding "" only used for type deduction"" -> Char "" the unicode character to encode"" -> Builder (UArray (Unit encoding)) (MUArray (Unit encoding)) (Unit encoding) st err ()",26,65,2025-11-07 11:42:35.602576,2025-11-07 11:42:35.602576 basement,unknown,Basement.Alg.Class,Indexable,Basement/Alg/Class.hs:10:7-15,"class Indexable container ty where index :: container -> (Offset ty) -> ty",10,11,2025-11-07 11:42:35.602590,2025-11-07 11:42:35.602590 basement,unknown,Basement.Alg.Class,RandomAccess,Basement/Alg/Class.hs:13:7-18,"class RandomAccess container prim ty where read :: container -> (Offset ty) -> prim ty write :: container -> (Offset ty) -> ty -> prim ()",13,15,2025-11-07 11:42:35.602595,2025-11-07 11:42:35.602595 beam-core,unknown,Database.Beam.Backend.Types,BeamBackend,Database/Beam/Backend/Types.hs:13:7-17,"class BeamBackend be where type BackendFromField be :: Type -> Constraint",13,15,2025-11-07 11:42:37.369631,2025-11-07 11:42:37.369631 beam-core,unknown,Database.Beam.Backend.SQL,MonadBeam,Database/Beam/Backend/SQL.hs:100:3-11,"class (BeamBackend be, Monad m) => MonadBeam be m | m -> be where {-# MINIMAL runReturningMany #-} runReturningMany :: FromBackendRow be x => BeamSqlBackendSyntax be "" The query to run"" -> (m (Maybe x) -> m a) "" Reader action that will be called with a function to fetch the next row"" -> m a runNoReturn :: BeamSqlBackendSyntax be -> m () runNoReturn cmd = runReturningMany cmd $ \ (_ :: m (Maybe ())) -> pure () runReturningOne :: FromBackendRow be x => BeamSqlBackendSyntax be -> m (Maybe x) runReturningOne cmd = runReturningMany cmd $ \ next -> do a <- next case a of Nothing -> pure Nothing Just x -> do a' <- next case a' of Nothing -> pure (Just x) Just _ -> pure Nothing runReturningList :: FromBackendRow be x => BeamSqlBackendSyntax be -> m [x] runReturningList cmd = runReturningMany cmd $ \ next -> let collectM acc = do a <- next case a of Nothing -> pure (acc []) Just x -> collectM (acc . (x :)) in collectM id",99,148,2025-11-07 11:42:37.369645,2025-11-07 11:42:37.369645 beam-core,unknown,Database.Beam.Backend.SQL,BeamSqlBackend,Database/Beam/Backend/SQL.hs:228:12-25,"class (BeamBackend be, IsSql92Syntax (BeamSqlBackendSyntax be), Sql92SanityCheck (BeamSqlBackendSyntax be), HasSqlValueSyntax (BeamSqlBackendValueSyntax be) Bool, HasSqlValueSyntax (BeamSqlBackendValueSyntax be) SqlNull, Eq (BeamSqlBackendExpressionSyntax be)) => BeamSqlBackend be",215,228,2025-11-07 11:42:37.369666,2025-11-07 11:42:37.369666 beam-core,unknown,Database.Beam.Backend.SQL,Trivial,Database/Beam/Backend/SQL.hs:235:7-13,class Trivial a,235,235,2025-11-07 11:42:37.369674,2025-11-07 11:42:37.369674 beam-core,unknown,Database.Beam.Backend.SQL,BeamSqlBackendIsString,Database/Beam/Backend/SQL.hs:254:7-28,class BeamSqlBackendIsString be text,254,254,2025-11-07 11:42:37.369679,2025-11-07 11:42:37.369679 beam-core,unknown,Database.Beam.Backend.SQL.Row,FromBackendRow,Database/Beam/Backend/SQL/Row.hs:106:25-38,"class BeamBackend be => FromBackendRow be a where fromBackendRow :: FromBackendRowM be a default fromBackendRow :: (Typeable a, BackendFromField be a) => FromBackendRowM be a fromBackendRow = parseOneField valuesNeeded :: Proxy be -> Proxy a -> Int valuesNeeded _ _ = 1",106,115,2025-11-07 11:42:37.369685,2025-11-07 11:42:37.369685 beam-core,unknown,Database.Beam.Backend.SQL.Row,GFromBackendRow,Database/Beam/Backend/SQL/Row.hs:117:7-21,"class GFromBackendRow be (exposed :: Type -> Type) rep where gFromBackendRow :: Proxy exposed -> FromBackendRowM be (rep ()) gValuesNeeded :: Proxy be -> Proxy exposed -> Proxy rep -> Int",117,119,2025-11-07 11:42:37.369693,2025-11-07 11:42:37.369693 beam-core,unknown,Database.Beam.Backend.SQL.SQL2003,IsSql2003FromSyntax,Database/Beam/Backend/SQL/SQL2003.hs:38:5-23,"class IsSql92FromSyntax from => IsSql2003FromSyntax from where type Sql2003FromSampleMethodSyntax from :: Type fromTableSample :: Sql92FromTableSourceSyntax from -> Sql2003FromSampleMethodSyntax from -> Maybe Double -> Maybe Integer -> Maybe Text -> from",37,47,2025-11-07 11:42:37.369700,2025-11-07 11:42:37.369700 beam-core,unknown,Database.Beam.Backend.SQL.SQL2003,IsSql2003OrderingElementaryOLAPOperationsSyntax,Database/Beam/Backend/SQL/SQL2003.hs:51:5-51,"class IsSql92OrderingSyntax ord => IsSql2003OrderingElementaryOLAPOperationsSyntax ord where nullsFirstOrdering, nullsLastOrdering :: ord -> ord",50,52,2025-11-07 11:42:37.369708,2025-11-07 11:42:37.369708 beam-core,unknown,Database.Beam.Query.Types,HasQBuilder,Database/Beam/Query/Types.hs:105:28-38,"class BeamSqlBackend be => HasQBuilder be where buildSqlQuery :: Projectible be a => TablePrefix -> Q be db s a -> BeamSqlBackendSelectSyntax be",105,107,2025-11-07 11:42:37.370361,2025-11-07 11:42:37.370361 beam-core,unknown,Database.Beam.Backend.SQL.SQL2003,IsSql2003ExpressionSyntax,Database/Beam/Backend/SQL/SQL2003.hs:56:5-29,"class (IsSql99ExpressionSyntax expr, IsSql2003WindowFrameSyntax (Sql2003ExpressionWindowFrameSyntax expr)) => IsSql2003ExpressionSyntax expr where type Sql2003ExpressionWindowFrameSyntax expr :: Type overE :: expr -> Sql2003ExpressionWindowFrameSyntax expr -> expr rowNumberE :: expr",54,63,2025-11-07 11:42:37.369714,2025-11-07 11:42:37.369714 beam-core,unknown,Database.Beam.Backend.SQL.SQL2003,IsSql2003ExpressionAdvancedOLAPOperationsSyntax,Database/Beam/Backend/SQL/SQL2003.hs:67:3-49,"class IsSql2003ExpressionSyntax expr => IsSql2003ExpressionAdvancedOLAPOperationsSyntax expr where percentRankAggE :: expr denseRankAggE :: expr cumeDistAggE :: expr",66,70,2025-11-07 11:42:37.369722,2025-11-07 11:42:37.369722 beam-core,unknown,Database.Beam.Backend.SQL.SQL2003,IsSql2003ExpressionElementaryOLAPOperationsSyntax,Database/Beam/Backend/SQL/SQL2003.hs:74:3-51,"class IsSql2003ExpressionSyntax expr => IsSql2003ExpressionElementaryOLAPOperationsSyntax expr where filterAggE :: expr -> expr -> expr rankAggE :: expr",73,77,2025-11-07 11:42:37.369729,2025-11-07 11:42:37.369729 beam-core,unknown,Database.Beam.Backend.SQL.SQL2003,IsSql2003BinaryAndVarBinaryDataTypeSyntax,Database/Beam/Backend/SQL/SQL2003.hs:81:3-43,"class IsSql99DataTypeSyntax dataType => IsSql2003BinaryAndVarBinaryDataTypeSyntax dataType where binaryType :: Maybe Word -> dataType varBinaryType :: Maybe Word -> dataType",80,83,2025-11-07 11:42:37.369736,2025-11-07 11:42:37.369736 beam-core,unknown,Database.Beam.Backend.SQL.SQL2003,IsSql2003WindowFrameSyntax,Database/Beam/Backend/SQL/SQL2003.hs:86:5-30,"class IsSql2003WindowFrameBoundsSyntax (Sql2003WindowFrameBoundsSyntax frame) => IsSql2003WindowFrameSyntax frame where type Sql2003WindowFrameExpressionSyntax frame :: Type type Sql2003WindowFrameOrderingSyntax frame :: Type type Sql2003WindowFrameBoundsSyntax frame :: Type frameSyntax :: Maybe [Sql2003WindowFrameExpressionSyntax frame] -> Maybe [Sql2003WindowFrameOrderingSyntax frame] -> Maybe (Sql2003WindowFrameBoundsSyntax frame) -> frame",85,94,2025-11-07 11:42:37.369742,2025-11-07 11:42:37.369742 beam-core,unknown,Database.Beam.Backend.SQL.SQL2003,IsSql2003WindowFrameBoundsSyntax,Database/Beam/Backend/SQL/SQL2003.hs:97:5-36,"class IsSql2003WindowFrameBoundSyntax (Sql2003WindowFrameBoundsBoundSyntax bounds) => IsSql2003WindowFrameBoundsSyntax bounds where type Sql2003WindowFrameBoundsBoundSyntax bounds :: Type fromToBoundSyntax :: Sql2003WindowFrameBoundsBoundSyntax bounds -> Maybe (Sql2003WindowFrameBoundsBoundSyntax bounds) -> bounds",96,101,2025-11-07 11:42:37.369752,2025-11-07 11:42:37.369752 beam-core,unknown,Database.Beam.Backend.SQL.SQL2003,IsSql2003WindowFrameBoundSyntax,Database/Beam/Backend/SQL/SQL2003.hs:103:7-37,"class IsSql2003WindowFrameBoundSyntax bound where unboundedSyntax :: bound nrowsBoundSyntax :: Int -> bound",103,105,2025-11-07 11:42:37.369760,2025-11-07 11:42:37.369760 beam-core,unknown,Database.Beam.Backend.SQL.SQL2003,IsSql2003EnhancedNumericFunctionsExpressionSyntax,Database/Beam/Backend/SQL/SQL2003.hs:109:4-52,"class IsSql99ExpressionSyntax expr => IsSql2003EnhancedNumericFunctionsExpressionSyntax expr where lnE, expE, sqrtE, ceilE, floorE :: expr -> expr powerE :: expr -> expr -> expr",108,112,2025-11-07 11:42:37.369766,2025-11-07 11:42:37.369766 beam-core,unknown,Database.Beam.Backend.SQL.SQL2003,IsSql2003EnhancedNumericFunctionsAggregationExpressionSyntax,Database/Beam/Backend/SQL/SQL2003.hs:115:4-63,"class IsSql99AggregationExpressionSyntax agg => IsSql2003EnhancedNumericFunctionsAggregationExpressionSyntax agg where stddevPopE, stddevSampE, varPopE, varSampE :: Maybe (Sql92AggregationSetQuantifierSyntax agg) -> agg -> agg covarPopE, covarSampE, corrE, regrSlopeE, regrInterceptE, regrCountE, regrRSquaredE, regrAvgXE, regrAvgYE, regrSXXE, regrSXYE, regrSYYE :: Maybe (Sql92AggregationSetQuantifierSyntax agg) -> agg -> agg -> agg",114,122,2025-11-07 11:42:37.369774,2025-11-07 11:42:37.369774 beam-core,unknown,Database.Beam.Backend.SQL.SQL2003,IsSql2003NtileExpressionSyntax,Database/Beam/Backend/SQL/SQL2003.hs:126:4-33,"class IsSql99AggregationExpressionSyntax agg => IsSql2003NtileExpressionSyntax agg where ntileE :: agg -> agg",125,127,2025-11-07 11:42:37.369836,2025-11-07 11:42:37.369836 beam-core,unknown,Database.Beam.Backend.SQL.SQL2003,IsSql2003LeadAndLagExpressionSyntax,Database/Beam/Backend/SQL/SQL2003.hs:131:4-38,"class IsSql99AggregationExpressionSyntax agg => IsSql2003LeadAndLagExpressionSyntax agg where leadE, lagE :: agg -> Maybe agg -> Maybe agg -> agg",130,132,2025-11-07 11:42:37.369843,2025-11-07 11:42:37.369843 beam-core,unknown,Database.Beam.Backend.SQL.SQL2003,IsSql2003FirstValueAndLastValueExpressionSyntax,Database/Beam/Backend/SQL/SQL2003.hs:136:4-50,"class IsSql99AggregationExpressionSyntax agg => IsSql2003FirstValueAndLastValueExpressionSyntax agg where firstValueE, lastValueE :: agg -> agg",135,137,2025-11-07 11:42:37.369850,2025-11-07 11:42:37.369850 beam-core,unknown,Database.Beam.Backend.SQL.SQL2003,IsSql2003NthValueExpressionSyntax,Database/Beam/Backend/SQL/SQL2003.hs:141:4-36,"class IsSql99AggregationExpressionSyntax agg => IsSql2003NthValueExpressionSyntax agg where nthValueE :: agg -> agg -> agg",140,142,2025-11-07 11:42:37.369856,2025-11-07 11:42:37.369856 beam-core,unknown,Database.Beam.Backend.SQL.SQL2003,IsSql2008BigIntDataTypeSyntax,Database/Beam/Backend/SQL/SQL2003.hs:146:3-31,"class IsSql99DataTypeSyntax dataType => IsSql2008BigIntDataTypeSyntax dataType where bigIntType :: dataType",145,147,2025-11-07 11:42:37.369863,2025-11-07 11:42:37.369863 beam-core,unknown,Database.Beam.Backend.SQL.BeamExtensions,MonadBeamInsertReturning,Database/Beam/Backend/SQL/BeamExtensions.hs:47:3-26,"class MonadBeam be m => MonadBeamInsertReturning be m | m -> be where runInsertReturningList :: (Beamable table, Projectible be (table (QExpr be ())), FromBackendRow be (table Identity)) => SqlInsert be table -> m [table Identity]",46,53,2025-11-07 11:42:37.369869,2025-11-07 11:42:37.369869 beam-core,unknown,Database.Beam.Backend.SQL.BeamExtensions,MonadBeamUpdateReturning,Database/Beam/Backend/SQL/BeamExtensions.hs:81:3-26,"class MonadBeam be m => MonadBeamUpdateReturning be m | m -> be where runUpdateReturningList :: (Beamable table, Projectible be (table (QExpr be ())), FromBackendRow be (table Identity)) => SqlUpdate be table -> m [table Identity]",80,87,2025-11-07 11:42:37.369876,2025-11-07 11:42:37.369876 beam-core,unknown,Database.Beam.Backend.SQL.BeamExtensions,MonadBeamDeleteReturning,Database/Beam/Backend/SQL/BeamExtensions.hs:116:3-26,"class MonadBeam be m => MonadBeamDeleteReturning be m | m -> be where runDeleteReturningList :: (Beamable table, Projectible be (table (QExpr be ())), FromBackendRow be (table Identity)) => SqlDelete be table -> m [table Identity]",115,122,2025-11-07 11:42:37.369884,2025-11-07 11:42:37.369884 beam-core,unknown,Database.Beam.Backend.SQL.SQL92,IsSql92InsertValuesSyntax,Database/Beam/Backend/SQL/SQL92.hs:163:3-27,"class IsSql92ExpressionSyntax (Sql92InsertValuesExpressionSyntax insertValues) => IsSql92InsertValuesSyntax insertValues where type Sql92InsertValuesExpressionSyntax insertValues :: Type type Sql92InsertValuesSelectSyntax insertValues :: Type insertSqlExpressions :: [[Sql92InsertValuesExpressionSyntax insertValues]] -> insertValues insertFromSql :: Sql92InsertValuesSelectSyntax insertValues -> insertValues",162,170,2025-11-07 11:42:37.370046,2025-11-07 11:42:37.370046 beam-core,unknown,Database.Beam.Query.Ord,SqlIn,Database/Beam/Query/Ord.hs:176:7-11,"class SqlIn expr a | a -> expr where in_ :: a -> [a] -> expr Bool",176,178,2025-11-07 11:42:37.370367,2025-11-07 11:42:37.370367 beam-core,unknown,Database.Beam.Query.Ord,HasSqlInTable,Database/Beam/Query/Ord.hs:186:28-40,class BeamSqlBackend be => HasSqlInTable be,186,186,2025-11-07 11:42:37.370372,2025-11-07 11:42:37.370372 beam-core,unknown,Database.Beam.Backend.SQL.BeamExtensions,BeamHasInsertOnConflict,Database/Beam/Backend/SQL/BeamExtensions.hs:147:28-50,"class BeamSqlBackend be => BeamHasInsertOnConflict be where data SqlConflictTarget be (table :: (Type -> Type) -> Type) :: Type data SqlConflictAction be (table :: (Type -> Type) -> Type) :: Type insertOnConflict :: Beamable table => DatabaseEntity be db (TableEntity table) -> SqlInsertValues be (table (QExpr be s)) -> SqlConflictTarget be table -> SqlConflictAction be table -> SqlInsert be table anyConflict :: SqlConflictTarget be table conflictingFields :: Projectible be proj => (table (QExpr be QInternal) -> proj) -> SqlConflictTarget be table conflictingFieldsWhere :: Projectible be proj => (table (QExpr be QInternal) -> proj) -> (forall s. table (QExpr be s) -> QExpr be s Bool) -> SqlConflictTarget be table onConflictDoNothing :: SqlConflictAction be table onConflictUpdateSet :: Beamable table => (forall s. table (QField s) -> table (QExpr be s) -> QAssignment be s) -> SqlConflictAction be table onConflictUpdateSetWhere :: Beamable table => (forall s. table (QField s) -> table (QExpr be s) -> QAssignment be s) -> (forall s. table (QField s) -> table (QExpr be s) -> QExpr be s Bool) -> SqlConflictAction be table",147,182,2025-11-07 11:42:37.369892,2025-11-07 11:42:37.369892 beam-core,unknown,Database.Beam.Backend.SQL.SQL99,IsSql99SelectSyntax,Database/Beam/Backend/SQL/SQL99.hs:22:3-21,class IsSql92SelectSyntax select => IsSql99SelectSyntax select,21,22,2025-11-07 11:42:37.369910,2025-11-07 11:42:37.369910 beam-core,unknown,Database.Beam.Backend.SQL.SQL99,IsSql99FunctionExpressionSyntax,Database/Beam/Backend/SQL/SQL99.hs:25:3-33,"class IsSql92ExpressionSyntax expr => IsSql99FunctionExpressionSyntax expr where functionCallE :: expr -> [expr] -> expr functionNameE :: Text -> expr",24,28,2025-11-07 11:42:37.369915,2025-11-07 11:42:37.369915 beam-core,unknown,Database.Beam.Backend.SQL.SQL99,IsSql99ExpressionSyntax,Database/Beam/Backend/SQL/SQL99.hs:31:3-25,"class IsSql99FunctionExpressionSyntax expr => IsSql99ExpressionSyntax expr where distinctE :: Sql92ExpressionSelectSyntax expr -> expr similarToE :: expr -> expr -> expr instanceFieldE :: expr -> Text -> expr refFieldE :: expr -> Text -> expr",30,37,2025-11-07 11:42:37.369921,2025-11-07 11:42:37.369921 beam-core,unknown,Database.Beam.Backend.SQL.SQL99,IsSql99ConcatExpressionSyntax,Database/Beam/Backend/SQL/SQL99.hs:40:3-31,"class IsSql92ExpressionSyntax expr => IsSql99ConcatExpressionSyntax expr where concatE :: [expr] -> expr",39,41,2025-11-07 11:42:37.369929,2025-11-07 11:42:37.369929 beam-core,unknown,Database.Beam.Backend.SQL.SQL99,IsSql99AggregationExpressionSyntax,Database/Beam/Backend/SQL/SQL99.hs:44:3-36,"class IsSql92AggregationExpressionSyntax expr => IsSql99AggregationExpressionSyntax expr where everyE, someE, anyE :: Maybe (Sql92AggregationSetQuantifierSyntax expr) -> expr -> expr",43,45,2025-11-07 11:42:37.369934,2025-11-07 11:42:37.369934 beam-core,unknown,Database.Beam.Backend.SQL.SQL99,IsSql99DataTypeSyntax,Database/Beam/Backend/SQL/SQL99.hs:48:3-23,"class IsSql92DataTypeSyntax dataType => IsSql99DataTypeSyntax dataType where characterLargeObjectType :: dataType binaryLargeObjectType :: dataType booleanType :: dataType arrayType :: dataType -> Int -> dataType rowType :: [(Text, dataType)] -> dataType",47,53,2025-11-07 11:42:37.369941,2025-11-07 11:42:37.369941 beam-core,unknown,Database.Beam.Backend.SQL.SQL99,IsSql99CommonTableExpressionSelectSyntax,Database/Beam/Backend/SQL/SQL99.hs:56:3-42,"class IsSql92SelectSyntax syntax => IsSql99CommonTableExpressionSelectSyntax syntax where type Sql99SelectCTESyntax syntax :: Type withSyntax :: [Sql99SelectCTESyntax syntax] -> syntax -> syntax",55,59,2025-11-07 11:42:37.369948,2025-11-07 11:42:37.369948 beam-core,unknown,Database.Beam.Backend.SQL.SQL99,IsSql99RecursiveCommonTableExpressionSelectSyntax,Database/Beam/Backend/SQL/SQL99.hs:62:8-56,"class IsSql99CommonTableExpressionSelectSyntax syntax => IsSql99RecursiveCommonTableExpressionSelectSyntax syntax where withRecursiveSyntax :: [Sql99SelectCTESyntax syntax] -> syntax -> syntax",61,64,2025-11-07 11:42:37.369955,2025-11-07 11:42:37.369955 beam-core,unknown,Database.Beam.Backend.SQL.SQL99,IsSql99CommonTableExpressionSyntax,Database/Beam/Backend/SQL/SQL99.hs:66:7-40,"class IsSql99CommonTableExpressionSyntax syntax where type Sql99CTESelectSyntax syntax :: Type cteSubquerySyntax :: Text -> [Text] -> Sql99CTESelectSyntax syntax -> syntax",66,69,2025-11-07 11:42:37.369962,2025-11-07 11:42:37.369962 beam-core,unknown,Database.Beam.Backend.SQL.SQL92,HasSqlValueSyntax,Database/Beam/Backend/SQL/SQL92.hs:18:7-23,"class HasSqlValueSyntax expr ty where sqlValueSyntax :: ty -> expr",18,19,2025-11-07 11:42:37.369968,2025-11-07 11:42:37.369968 beam-core,unknown,Database.Beam.Backend.SQL.SQL92,Sql92DisplaySyntax,Database/Beam/Backend/SQL/SQL92.hs:82:7-24,"class Sql92DisplaySyntax syntax where displaySyntax :: syntax -> String",82,86,2025-11-07 11:42:37.369974,2025-11-07 11:42:37.369974 beam-core,unknown,Database.Beam.Backend.SQL.SQL92,IsSql92Syntax,Database/Beam/Backend/SQL/SQL92.hs:92:3-15,"class (IsSql92SelectSyntax (Sql92SelectSyntax cmd), IsSql92InsertSyntax (Sql92InsertSyntax cmd), IsSql92UpdateSyntax (Sql92UpdateSyntax cmd), IsSql92DeleteSyntax (Sql92DeleteSyntax cmd)) => IsSql92Syntax cmd where type Sql92SelectSyntax cmd :: Type type Sql92InsertSyntax cmd :: Type type Sql92UpdateSyntax cmd :: Type type Sql92DeleteSyntax cmd :: Type selectCmd :: Sql92SelectSyntax cmd -> cmd insertCmd :: Sql92InsertSyntax cmd -> cmd updateCmd :: Sql92UpdateSyntax cmd -> cmd deleteCmd :: Sql92DeleteSyntax cmd -> cmd",88,101,2025-11-07 11:42:37.369992,2025-11-07 11:42:37.369992 beam-core,unknown,Database.Beam.Backend.SQL.SQL92,IsSql92SelectSyntax,Database/Beam/Backend/SQL/SQL92.hs:105:5-23,"class (IsSql92SelectTableSyntax (Sql92SelectSelectTableSyntax select), IsSql92OrderingSyntax (Sql92SelectOrderingSyntax select)) => IsSql92SelectSyntax select where type Sql92SelectSelectTableSyntax select :: Type type Sql92SelectOrderingSyntax select :: Type selectStmt :: Sql92SelectSelectTableSyntax select -> [Sql92SelectOrderingSyntax select] -> Maybe Integer "" LIMIT "" -> Maybe Integer "" OFFSET "" -> select",103,113,2025-11-07 11:42:37.370003,2025-11-07 11:42:37.370003 beam-core,unknown,Database.Beam.Backend.SQL.SQL92,IsSql92SelectTableSyntax,Database/Beam/Backend/SQL/SQL92.hs:128:5-28,"class (IsSql92ExpressionSyntax (Sql92SelectTableExpressionSyntax select), IsSql92AggregationExpressionSyntax (Sql92SelectTableExpressionSyntax select), IsSql92ProjectionSyntax (Sql92SelectTableProjectionSyntax select), IsSql92FromSyntax (Sql92SelectTableFromSyntax select), IsSql92GroupingSyntax (Sql92SelectTableGroupingSyntax select), IsSql92AggregationSetQuantifierSyntax (Sql92SelectTableSetQuantifierSyntax select), IsSql92AggregationIndexHintsSyntax (Sql92SelectTableSetIndexHintsSyntax select), Sql92GroupingExpressionSyntax (Sql92SelectTableGroupingSyntax select) ~ Sql92SelectTableExpressionSyntax select, Sql92FromExpressionSyntax (Sql92SelectTableFromSyntax select) ~ Sql92SelectTableExpressionSyntax select, Sql92SelectSelectTableSyntax (Sql92SelectTableSelectSyntax select) ~ select, Eq (Sql92SelectTableExpressionSyntax select)) => IsSql92SelectTableSyntax select where type Sql92SelectTableSelectSyntax select :: Type type Sql92SelectTableExpressionSyntax select :: Type type Sql92SelectTableProjectionSyntax select :: Type type Sql92SelectTableFromSyntax select :: Type type Sql92SelectTableGroupingSyntax select :: Type type Sql92SelectTableSetQuantifierSyntax select :: Type type Sql92SelectTableSetIndexHintsSyntax select :: Type selectTableStmt :: Maybe (Sql92SelectTableSetQuantifierSyntax select) -> Maybe (Text) -> Sql92SelectTableProjectionSyntax select -> Maybe (Sql92SelectTableFromSyntax select) -> Maybe (Sql92SelectTableExpressionSyntax select) "" Where clause "" -> Maybe (Sql92SelectTableGroupingSyntax select) -> Maybe (Sql92SelectTableExpressionSyntax select) "" having clause "" -> select unionTables, intersectTables, exceptTable :: Bool -> select -> select -> select",115,147,2025-11-07 11:42:37.370012,2025-11-07 11:42:37.370012 beam-core,unknown,Database.Beam.Backend.SQL.SQL92,IsSql92InsertSyntax,Database/Beam/Backend/SQL/SQL92.hs:151:3-21,"class (IsSql92InsertValuesSyntax (Sql92InsertValuesSyntax insert), IsSql92TableNameSyntax (Sql92InsertTableNameSyntax insert)) => IsSql92InsertSyntax insert where type Sql92InsertValuesSyntax insert :: Type type Sql92InsertTableNameSyntax insert :: Type insertStmt :: Sql92InsertTableNameSyntax insert -> [Text] "" Fields"" -> Sql92InsertValuesSyntax insert -> insert",149,160,2025-11-07 11:42:37.370037,2025-11-07 11:42:37.370037 beam-core,unknown,Database.Beam.Schema.Lenses,GTableLenses,Database/Beam/Schema/Lenses.hs:25:7-18,"class GTableLenses t (m :: Type -> Type) a (lensType :: Type -> Type) where gTableLenses :: Proxy a -> Lens' (t m) (a p) -> lensType ()",25,26,2025-11-07 11:42:37.370348,2025-11-07 11:42:37.370348 beam-core,unknown,Database.Beam.Backend.SQL.SQL92,IsSql92UpdateSyntax,Database/Beam/Backend/SQL/SQL92.hs:175:7-25,"class (IsSql92ExpressionSyntax (Sql92UpdateExpressionSyntax update), IsSql92FieldNameSyntax (Sql92UpdateFieldNameSyntax update), IsSql92TableNameSyntax (Sql92UpdateTableNameSyntax update)) => IsSql92UpdateSyntax update where type Sql92UpdateTableNameSyntax update :: Type type Sql92UpdateFieldNameSyntax update :: Type type Sql92UpdateExpressionSyntax update :: Type updateStmt :: Sql92UpdateTableNameSyntax update -> [(Sql92UpdateFieldNameSyntax update, Sql92UpdateExpressionSyntax update)] -> Maybe (Sql92UpdateExpressionSyntax update) "" WHERE "" -> update",172,184,2025-11-07 11:42:37.370055,2025-11-07 11:42:37.370055 beam-core,unknown,Database.Beam.Backend.SQL.SQL92,IsSql92DeleteSyntax,Database/Beam/Backend/SQL/SQL92.hs:188:3-21,"class (IsSql92TableNameSyntax (Sql92DeleteTableNameSyntax delete), IsSql92ExpressionSyntax (Sql92DeleteExpressionSyntax delete)) => IsSql92DeleteSyntax delete where type Sql92DeleteTableNameSyntax delete :: Type type Sql92DeleteExpressionSyntax delete :: Type deleteStmt :: Sql92DeleteTableNameSyntax delete -> Maybe Text -> Maybe (Sql92DeleteExpressionSyntax delete) -> Maybe Int "" LIMIT "" -> delete deleteSupportsAlias :: Proxy delete -> Bool deleteSupportsAlias _ = False",186,199,2025-11-07 11:42:37.370066,2025-11-07 11:42:37.370066 beam-core,unknown,Database.Beam.Backend.SQL.SQL92,IsSql92FieldNameSyntax,Database/Beam/Backend/SQL/SQL92.hs:201:7-28,"class IsSql92FieldNameSyntax fn where qualifiedField :: Text -> Text -> fn unqualifiedField :: Text -> fn",201,203,2025-11-07 11:42:37.370076,2025-11-07 11:42:37.370076 beam-core,unknown,Database.Beam.Backend.SQL.SQL92,IsSql92QuantifierSyntax,Database/Beam/Backend/SQL/SQL92.hs:205:7-29,"class IsSql92QuantifierSyntax quantifier where quantifyOverAll, quantifyOverAny :: quantifier",205,206,2025-11-07 11:42:37.370081,2025-11-07 11:42:37.370081 beam-core,unknown,Database.Beam.Backend.SQL.SQL92,IsSql92ExtractFieldSyntax,Database/Beam/Backend/SQL/SQL92.hs:208:7-31,"class IsSql92ExtractFieldSyntax extractField where secondsField :: extractField minutesField :: extractField hourField :: extractField dayField :: extractField monthField :: extractField yearField :: extractField",208,214,2025-11-07 11:42:37.370087,2025-11-07 11:42:37.370087 beam-core,unknown,Database.Beam.Backend.SQL.SQL92,IsSql92DataTypeSyntax,Database/Beam/Backend/SQL/SQL92.hs:216:7-27,"class IsSql92DataTypeSyntax dataType where domainType :: Text -> dataType charType :: Maybe Word -> Maybe Text -> dataType varCharType :: Maybe Word -> Maybe Text -> dataType nationalCharType :: Maybe Word -> dataType nationalVarCharType :: Maybe Word -> dataType bitType :: Maybe Word -> dataType varBitType :: Maybe Word -> dataType numericType :: Maybe (Word, Maybe Word) -> dataType decimalType :: Maybe (Word, Maybe Word) -> dataType intType :: dataType smallIntType :: dataType floatType :: Maybe Word -> dataType doubleType :: dataType realType :: dataType dateType :: dataType timeType :: Maybe Word -> Bool "" With time zone "" -> dataType timestampType :: Maybe Word -> Bool "" With time zone "" -> dataType",216,234,2025-11-07 11:42:37.370094,2025-11-07 11:42:37.370094 beam-core,unknown,Database.Beam.Backend.SQL.SQL92,IsSql92ExpressionSyntax,Database/Beam/Backend/SQL/SQL92.hs:245:5-27,"class (HasSqlValueSyntax (Sql92ExpressionValueSyntax expr) Int, HasSqlValueSyntax (Sql92ExpressionValueSyntax expr) Bool, HasSqlValueSyntax (Sql92ExpressionValueSyntax expr) Text, IsSql92FieldNameSyntax (Sql92ExpressionFieldNameSyntax expr), IsSql92QuantifierSyntax (Sql92ExpressionQuantifierSyntax expr), IsSql92DataTypeSyntax (Sql92ExpressionCastTargetSyntax expr), IsSql92ExtractFieldSyntax (Sql92ExpressionExtractFieldSyntax expr), Typeable expr) => IsSql92ExpressionSyntax expr where type Sql92ExpressionQuantifierSyntax expr :: Type type Sql92ExpressionValueSyntax expr :: Type type Sql92ExpressionSelectSyntax expr :: Type type Sql92ExpressionFieldNameSyntax expr :: Type type Sql92ExpressionCastTargetSyntax expr :: Type type Sql92ExpressionExtractFieldSyntax expr :: Type valueE :: Sql92ExpressionValueSyntax expr -> expr rowE, quantifierListE, coalesceE :: [expr] -> expr quantifierListE = rowE caseE :: [(expr, expr)] -> expr -> expr fieldE :: Sql92ExpressionFieldNameSyntax expr -> expr betweenE :: expr -> expr -> expr -> expr betweenE a lower upper = (gtE Nothing a lower) `andE` (ltE Nothing a upper) andE, orE, addE, subE, mulE, divE, likeE, modE, overlapsE, nullIfE, positionE :: expr -> expr -> expr eqE, neqE, ltE, gtE, leE, geE :: Maybe (Sql92ExpressionQuantifierSyntax expr) -> expr -> expr -> expr eqMaybeE, neqMaybeE :: expr -> expr -> expr -> expr eqMaybeE a b e = let aIsNull = isNullE a bIsNull = isNullE b in caseE [(aIsNull `andE` bIsNull, valueE (sqlValueSyntax True)), (aIsNull `orE` bIsNull, valueE (sqlValueSyntax False))] e neqMaybeE a b e = let aIsNull = isNullE a bIsNull = isNullE b in caseE [(aIsNull `andE` bIsNull, valueE (sqlValueSyntax False)), (aIsNull `orE` bIsNull, valueE (sqlValueSyntax True))] e castE :: expr -> Sql92ExpressionCastTargetSyntax expr -> expr notE, negateE, isNullE, isNotNullE, isTrueE, isNotTrueE, isFalseE, isNotFalseE, isUnknownE, isNotUnknownE, charLengthE, octetLengthE, bitLengthE, lowerE, upperE, trimE :: expr -> expr absE :: expr -> expr extractE :: Sql92ExpressionExtractFieldSyntax expr -> expr -> expr jsonValidE :: expr -> expr jsonExtractE :: expr -> expr -> expr jsonUnquoteE :: expr -> expr existsE, uniqueE, subqueryE :: Sql92ExpressionSelectSyntax expr -> expr currentTimestampE :: expr defaultE :: expr inE :: expr -> [expr] -> expr",237,331,2025-11-07 11:42:37.370107,2025-11-07 11:42:37.370107 beam-core,unknown,Database.Beam.Backend.SQL.SQL92,IsSql92AggregationExpressionSyntax,Database/Beam/Backend/SQL/SQL92.hs:337:3-36,"class IsSql92AggregationSetQuantifierSyntax (Sql92AggregationSetQuantifierSyntax expr) => IsSql92AggregationExpressionSyntax expr where type Sql92AggregationSetQuantifierSyntax expr :: Type countAllE :: expr countE, avgE, maxE, minE, sumE :: Maybe (Sql92AggregationSetQuantifierSyntax expr) -> expr -> expr",336,343,2025-11-07 11:42:37.370148,2025-11-07 11:42:37.370148 beam-core,unknown,Database.Beam.Backend.SQL.SQL92,IsSql92AggregationSetQuantifierSyntax,Database/Beam/Backend/SQL/SQL92.hs:345:7-43,"class IsSql92AggregationSetQuantifierSyntax q where setQuantifierDistinct, setQuantifierAll :: q",345,346,2025-11-07 11:42:37.370157,2025-11-07 11:42:37.370157 beam-core,unknown,Database.Beam.Backend.SQL.SQL92,IsSql92AggregationIndexHintsSyntax,Database/Beam/Backend/SQL/SQL92.hs:348:7-40,"class IsSql92AggregationIndexHintsSyntax ind where type Sql92AggregationIndexHintsSyntax ind :: Type setIndexForce, setIndexUse :: Sql92AggregationIndexHintsSyntax ind -> ind",348,351,2025-11-07 11:42:37.370163,2025-11-07 11:42:37.370163 beam-core,unknown,Database.Beam.Backend.SQL.SQL92,IsSql92ProjectionSyntax,Database/Beam/Backend/SQL/SQL92.hs:353:73-95,"class IsSql92ExpressionSyntax (Sql92ProjectionExpressionSyntax proj) => IsSql92ProjectionSyntax proj where type Sql92ProjectionExpressionSyntax proj :: Type projExprs :: [(Sql92ProjectionExpressionSyntax proj, Maybe Text)] -> proj",353,357,2025-11-07 11:42:37.370170,2025-11-07 11:42:37.370170 beam-core,unknown,Database.Beam.Backend.SQL.SQL92,IsSql92OrderingSyntax,Database/Beam/Backend/SQL/SQL92.hs:359:7-27,"class IsSql92OrderingSyntax ord where type Sql92OrderingExpressionSyntax ord :: Type ascOrdering, descOrdering :: Sql92OrderingExpressionSyntax ord -> ord",359,362,2025-11-07 11:42:37.370177,2025-11-07 11:42:37.370177 beam-core,unknown,Database.Beam.Backend.SQL.SQL92,IsSql92TableNameSyntax,Database/Beam/Backend/SQL/SQL92.hs:364:7-28,"class IsSql92TableNameSyntax tblName where tableName :: Maybe Text "" Schema "" -> Text "" Table name "" -> tblName",364,367,2025-11-07 11:42:37.370184,2025-11-07 11:42:37.370184 beam-core,unknown,Database.Beam.Backend.SQL.SQL92,IsSql92TableSourceSyntax,Database/Beam/Backend/SQL/SQL92.hs:370:3-26,"class IsSql92TableNameSyntax (Sql92TableSourceTableNameSyntax tblSource) => IsSql92TableSourceSyntax tblSource where type Sql92TableSourceSelectSyntax tblSource :: Type type Sql92TableSourceExpressionSyntax tblSource :: Type type Sql92TableSourceTableNameSyntax tblSource :: Type tableNamed :: Sql92TableSourceTableNameSyntax tblSource -> tblSource tableFromSubSelect :: Sql92TableSourceSelectSyntax tblSource -> tblSource tableFromValues :: [[Sql92TableSourceExpressionSyntax tblSource]] -> tblSource",369,379,2025-11-07 11:42:37.370189,2025-11-07 11:42:37.370189 beam-core,unknown,Database.Beam.Backend.SQL.SQL92,IsSql92GroupingSyntax,Database/Beam/Backend/SQL/SQL92.hs:381:7-27,"class IsSql92GroupingSyntax grouping where type Sql92GroupingExpressionSyntax grouping :: Type groupByExpressions :: [Sql92GroupingExpressionSyntax grouping] -> grouping",381,384,2025-11-07 11:42:37.370200,2025-11-07 11:42:37.370200 beam-core,unknown,Database.Beam.Schema.Lenses,GDatabaseLenses,Database/Beam/Schema/Lenses.hs:114:7-21,"class GDatabaseLenses outer structure lensType where gDatabaseLenses :: Lens' outer (structure p) -> lensType ()",114,115,2025-11-07 11:42:37.370355,2025-11-07 11:42:37.370355 cmdargs,unknown,System.Console.CmdArgs.Default,Default,System/Console/CmdArgs/Default.hs:10:7-13,"class Default a where def :: a",10,12,2025-11-07 11:46:54.740313,2025-11-07 11:46:54.740313 beam-core,unknown,Database.Beam.Backend.SQL.SQL92,IsSql92FromSyntax,Database/Beam/Backend/SQL/SQL92.hs:388:5-21,"class (IsSql92TableSourceSyntax (Sql92FromTableSourceSyntax from), IsSql92ExpressionSyntax (Sql92FromExpressionSyntax from)) => IsSql92FromSyntax from where type Sql92FromTableSourceSyntax from :: Type type Sql92FromExpressionSyntax from :: Type fromTable :: Sql92FromTableSourceSyntax from -> Maybe (Text, Maybe [Text]) -> from innerJoin, leftJoin, rightJoin :: from -> from -> Maybe (Sql92FromExpressionSyntax from) -> from",386,399,2025-11-07 11:42:37.370206,2025-11-07 11:42:37.370206 beam-core,unknown,Database.Beam.Backend.SQL.SQL92,IsSql92FromOuterJoinSyntax,Database/Beam/Backend/SQL/SQL92.hs:402:3-28,"class IsSql92FromSyntax from => IsSql92FromOuterJoinSyntax from where outerJoin :: from -> from -> Maybe (Sql92FromExpressionSyntax from) -> from",401,404,2025-11-07 11:42:37.370215,2025-11-07 11:42:37.370215 beam-core,unknown,Database.Beam.Schema.Tables,Database,Database/Beam/Schema/Tables.hs:117:7-14,"class Database be db where zipTables :: Applicative m => Proxy be -> (forall tbl. (IsDatabaseEntity be tbl, DatabaseEntityRegularRequirements be tbl) => f tbl -> g tbl -> m (h tbl)) -> db f -> db g -> m (db h) default zipTables :: (Generic (db f), Generic (db g), Generic (db h), Applicative m, GZipDatabase be f g h (Rep (db f)) (Rep (db g)) (Rep (db h))) => Proxy be -> (forall tbl. (IsDatabaseEntity be tbl, DatabaseEntityRegularRequirements be tbl) => f tbl -> g tbl -> m (h tbl)) -> db f -> db g -> m (db h) zipTables be combine (f :: db f) (g :: db g) = refl $ \ h -> to <$> gZipDatabase (Proxy @f, Proxy @g, h, be) combine (from f) (from g) where refl :: (Proxy h -> m (db h)) -> m (db h) refl fn = fn Proxy",117,148,2025-11-07 11:42:37.370222,2025-11-07 11:42:37.370222 beam-core,unknown,Database.Beam.Schema.Tables,RenamableField,Database/Beam/Schema/Tables.hs:260:7-20,"class RenamableField f where renameField :: Proxy f -> Proxy a -> (NE.NonEmpty Text -> Text) -> Columnar f a -> Columnar f a",260,261,2025-11-07 11:42:37.370237,2025-11-07 11:42:37.370237 beam-core,unknown,Database.Beam.Schema.Tables,RenamableWithRule,Database/Beam/Schema/Tables.hs:265:7-23,"class RenamableWithRule mod where renamingFields :: (NE.NonEmpty Text -> Text) -> mod",265,266,2025-11-07 11:42:37.370243,2025-11-07 11:42:37.370243 beam-core,unknown,Database.Beam.Schema.Tables,IsDatabaseEntity,Database/Beam/Schema/Tables.hs:301:5-20,"class RenamableWithRule (FieldRenamer (DatabaseEntityDescriptor be entityType)) => IsDatabaseEntity be entityType where data DatabaseEntityDescriptor be entityType :: Type type DatabaseEntityDefaultRequirements be entityType :: Constraint type DatabaseEntityRegularRequirements be entityType :: Constraint dbEntityName :: Lens' (DatabaseEntityDescriptor be entityType) Text dbEntitySchema :: Traversal' (DatabaseEntityDescriptor be entityType) (Maybe Text) dbEntityAuto :: DatabaseEntityDefaultRequirements be entityType => Text -> DatabaseEntityDescriptor be entityType",300,310,2025-11-07 11:42:37.370248,2025-11-07 11:42:37.370248 beam-core,unknown,Database.Beam.Schema.Tables,GAutoDbSettings,Database/Beam/Schema/Tables.hs:404:7-21,"class GAutoDbSettings x where autoDbSettings' :: x",404,405,2025-11-07 11:42:37.370259,2025-11-07 11:42:37.370259 beam-core,unknown,Database.Beam.Schema.Tables,GZipDatabase,Database/Beam/Schema/Tables.hs:417:7-18,"class GZipDatabase be f g h x y z where gZipDatabase :: Applicative m => (Proxy f, Proxy g, Proxy h, Proxy be) -> (forall tbl. (IsDatabaseEntity be tbl, DatabaseEntityRegularRequirements be tbl) => f tbl -> g tbl -> m (h tbl)) -> x () -> y () -> m (z ())",417,421,2025-11-07 11:42:37.370264,2025-11-07 11:42:37.370264 beam-core,unknown,Database.Beam.Schema.Tables,Table,Database/Beam/Schema/Tables.hs:593:72-76,"class (Typeable table, Beamable table, Beamable (PrimaryKey table)) => Table (table :: (Type -> Type) -> Type) where data PrimaryKey table (column :: Type -> Type) :: Type primaryKey :: table column -> PrimaryKey table column",593,601,2025-11-07 11:42:37.370271,2025-11-07 11:42:37.370271 beam-core,unknown,Database.Beam.Schema.Tables,Beamable,Database/Beam/Schema/Tables.hs:609:7-14,"class Beamable table where zipBeamFieldsM :: Applicative m => (forall a. Columnar' f a -> Columnar' g a -> m (Columnar' h a)) -> table f -> table g -> m (table h) default zipBeamFieldsM :: (HasBeamFields table f g h, Applicative m) => (forall a. Columnar' f a -> Columnar' g a -> m (Columnar' h a)) -> table f -> table g -> m (table h) zipBeamFieldsM combine (f :: table f) g = to' <$> gZipTables (Proxy :: Proxy (Rep (table Exposed))) combine (from' f) (from' g) tblSkeleton :: TableSkeleton table default tblSkeleton :: (Generic (TableSkeleton table), GTableSkeleton (Rep (TableSkeleton table))) => TableSkeleton table tblSkeleton = withProxy $ \ proxy -> to' (gTblSkeleton proxy) where withProxy :: (Proxy (Rep (TableSkeleton table)) -> TableSkeleton table) -> TableSkeleton table withProxy f = f Proxy",609,632,2025-11-07 11:42:37.370279,2025-11-07 11:42:37.370279 beam-core,unknown,Database.Beam.Schema.Tables,Retaggable,Database/Beam/Schema/Tables.hs:652:7-16,"class Retaggable f x | x -> f where type Retag (tag :: (Type -> Type) -> Type -> Type) x :: Type retag :: (forall a. Columnar' f a -> Columnar' (tag f) a) -> x -> Retag tag x",652,656,2025-11-07 11:42:37.370303,2025-11-07 11:42:37.370303 beam-core,unknown,Database.Beam.Schema.Tables,GFieldsFulfillConstraint,Database/Beam/Schema/Tables.hs:839:7-30,"class GFieldsFulfillConstraint (c :: Type -> Constraint) (exposed :: Type -> Type) withconstraint where gWithConstrainedFields :: Proxy c -> Proxy exposed -> withconstraint ()",839,840,2025-11-07 11:42:37.370310,2025-11-07 11:42:37.370310 beam-core,unknown,Database.Beam.Schema.Tables,GZipTables,Database/Beam/Schema/Tables.hs:899:7-16,"class GZipTables f g h (exposedRep :: Type -> Type) fRep gRep hRep where gZipTables :: Applicative m => Proxy exposedRep -> (forall a. Columnar' f a -> Columnar' g a -> m (Columnar' h a)) -> fRep () -> gRep () -> m (hRep ())",899,904,2025-11-07 11:42:37.370317,2025-11-07 11:42:37.370317 beam-core,unknown,Database.Beam.Schema.Tables,GDefaultTableFieldSettings,Database/Beam/Schema/Tables.hs:956:7-32,"class GDefaultTableFieldSettings x where gDefTblFieldSettings :: Proxy x -> x",956,957,2025-11-07 11:42:37.370324,2025-11-07 11:42:37.370324 beam-core,unknown,Database.Beam.Schema.Tables,SubTableStrategyImpl,Database/Beam/Schema/Tables.hs:997:7-26,"class SubTableStrategyImpl (strategy :: SubTableStrategy) (f :: Type -> Type) sub where namedSubTable :: Proxy strategy -> sub f",997,998,2025-11-07 11:42:37.370329,2025-11-07 11:42:37.370329 beam-core,unknown,Database.Beam.Schema.Tables,TagReducesTo,Database/Beam/Schema/Tables.hs:1040:7-18,"class TagReducesTo f f' | f -> f' where reduceTag :: Functor m => (Columnar' f' a' -> m (Columnar' f' a')) -> Columnar' f a -> m (Columnar' f a)",1040,1043,2025-11-07 11:42:37.370336,2025-11-07 11:42:37.370336 beam-core,unknown,Database.Beam.Schema.Tables,GTableSkeleton,Database/Beam/Schema/Tables.hs:1053:7-20,"class GTableSkeleton x where gTblSkeleton :: Proxy x -> x ()",1053,1054,2025-11-07 11:42:37.370342,2025-11-07 11:42:37.370342 dec,unknown,Data.Type.Dec,Decidable,src/Data/Type/Dec.hs:44:7-15,"class Decidable a where decide :: Dec a",44,45,2025-11-07 11:47:46.727996,2025-11-07 11:47:46.727996 beam-core,unknown,Database.Beam.Query.Ord,SqlEq,Database/Beam/Query/Ord.hs:203:7-11,"class SqlEq expr a | a -> expr where (==.) :: a -> a -> expr Bool (/=.) :: a -> a -> expr Bool (==?.) :: a -> a -> expr SqlBool (/=?.) :: a -> a -> expr SqlBool",203,213,2025-11-07 11:42:37.370377,2025-11-07 11:42:37.370377 beam-core,unknown,Database.Beam.Query.Ord,SqlEqQuantified,Database/Beam/Query/Ord.hs:217:23-37,"class SqlEq expr a => SqlEqQuantified expr quantified a | a -> expr quantified where (==*.), (/=*.) :: a -> quantified -> expr SqlBool",217,220,2025-11-07 11:42:37.370383,2025-11-07 11:42:37.370383 beam-core,unknown,Database.Beam.Query.Ord,HasSqlEqualityCheck,Database/Beam/Query/Ord.hs:227:28-46,"class BeamSqlBackend be => HasSqlEqualityCheck be a where sqlEqE, sqlNeqE :: Proxy a -> Proxy be -> BeamSqlBackendExpressionSyntax be -> BeamSqlBackendExpressionSyntax be -> BeamSqlBackendExpressionSyntax be sqlEqE _ _ = eqE Nothing sqlNeqE _ _ = neqE Nothing sqlEqTriE, sqlNeqTriE :: Proxy a -> Proxy be -> BeamSqlBackendExpressionSyntax be -> BeamSqlBackendExpressionSyntax be -> BeamSqlBackendExpressionSyntax be sqlEqTriE _ _ = eqE Nothing sqlNeqTriE _ _ = neqE Nothing",227,242,2025-11-07 11:42:37.370389,2025-11-07 11:42:37.370389 beam-core,unknown,Database.Beam.Query.Ord,HasSqlQuantifiedEqualityCheck,Database/Beam/Query/Ord.hs:262:35-63,"class HasSqlEqualityCheck be a => HasSqlQuantifiedEqualityCheck be a where sqlQEqE, sqlQNeqE :: Proxy a -> Proxy be -> Maybe (BeamSqlBackendExpressionQuantifierSyntax be) -> BeamSqlBackendExpressionSyntax be -> BeamSqlBackendExpressionSyntax be -> BeamSqlBackendExpressionSyntax be sqlQEqE _ _ = eqE sqlQNeqE _ _ = neqE",262,269,2025-11-07 11:42:37.370399,2025-11-07 11:42:37.370399 beam-core,unknown,Database.Beam.Query.Ord,SqlOrd,Database/Beam/Query/Ord.hs:361:7-12,"class SqlOrd expr e | e -> expr where (<.), (>.), (<=.), (>=.) :: e -> e -> expr Bool",361,363,2025-11-07 11:42:37.370408,2025-11-07 11:42:37.370408 beam-core,unknown,Database.Beam.Query.Ord,SqlOrdQuantified,Database/Beam/Query/Ord.hs:367:3-18,"class SqlOrd expr e => SqlOrdQuantified expr quantified e | e -> expr quantified where (<*.), (>*.), (<=*.), (>=*.) :: e -> quantified -> expr Bool",366,369,2025-11-07 11:42:37.370413,2025-11-07 11:42:37.370413 beam-core,unknown,Database.Beam.Query.Internal,AggregateContext,Database/Beam/Query/Internal.hs:222:27-42,class Typeable context => AggregateContext context,222,222,2025-11-07 11:42:37.370420,2025-11-07 11:42:37.370420 beam-core,unknown,Database.Beam.Query.Internal,ValueContext,Database/Beam/Query/Internal.hs:244:27-38,class Typeable context => ValueContext context,244,244,2025-11-07 11:42:37.370425,2025-11-07 11:42:37.370425 beam-core,unknown,Database.Beam.Query.Internal,WindowFrameContext,Database/Beam/Query/Internal.hs:247:27-44,class Typeable context => WindowFrameContext context,247,247,2025-11-07 11:42:37.370430,2025-11-07 11:42:37.370430 beam-core,unknown,Database.Beam.Query.Internal,AnyType,Database/Beam/Query/Internal.hs:256:7-13,class AnyType a,256,256,2025-11-07 11:42:37.370435,2025-11-07 11:42:37.370435 beam-core,unknown,Database.Beam.Query.Internal,ThreadRewritable,Database/Beam/Query/Internal.hs:275:7-22,"class ThreadRewritable (s :: Type) (a :: Type) | a -> s where type WithRewrittenThread s (s' :: Type) a :: Type rewriteThread :: Proxy s' -> a -> WithRewrittenThread s s' a",275,278,2025-11-07 11:42:37.370440,2025-11-07 11:42:37.370440 beam-core,unknown,Database.Beam.Query.Internal,ContextRewritable,Database/Beam/Query/Internal.hs:439:7-23,"class ContextRewritable a where type WithRewrittenContext a ctxt :: Type rewriteContext :: Proxy ctxt -> a -> WithRewrittenContext a ctxt",439,442,2025-11-07 11:42:37.370446,2025-11-07 11:42:37.370446 beam-core,unknown,Database.Beam.Query.Internal,ProjectibleWithPredicate,Database/Beam/Query/Internal.hs:635:7-30,"class ProjectibleWithPredicate (contextPredicate :: Type -> Constraint) be res a | a -> be where project' :: Monad m => Proxy contextPredicate -> Proxy (be, res) -> (forall context. contextPredicate context => Proxy context -> Proxy be -> res -> m res) -> a -> m a projectSkeleton' :: Monad m => Proxy contextPredicate -> Proxy (be, res) -> (forall context. contextPredicate context => Proxy context -> Proxy be -> m res) -> m a",635,644,2025-11-07 11:42:37.370452,2025-11-07 11:42:37.370452 beam-core,unknown,Database.Beam.Query.Aggregate,QGroupable,Database/Beam/Query/Aggregate.hs:106:7-16,"class QGroupable expr grouped | expr -> grouped, grouped -> expr where group_ :: expr -> grouped",106,107,2025-11-07 11:42:37.370471,2025-11-07 11:42:37.370471 beam-core,unknown,Database.Beam.Query.Adhoc,Adhoc,Database/Beam/Query/Adhoc.hs:20:7-11,"class Adhoc structure where type AdhocTable structure (f :: Type -> Type) :: Type mkAdhocField :: (forall a. T.Text -> f a) -> structure -> AdhocTable structure f",20,23,2025-11-07 11:42:37.370477,2025-11-07 11:42:37.370477 beam-core,unknown,Database.Beam.Query.Extract,HasSqlTime,Database/Beam/Query/Extract.hs:54:7-16,class HasSqlTime tgt,54,54,2025-11-07 11:42:37.370484,2025-11-07 11:42:37.370484 beam-core,unknown,Database.Beam.Query.Extract,HasSqlDate,Database/Beam/Query/Extract.hs:69:7-16,class HasSqlDate tgt,69,69,2025-11-07 11:42:37.370489,2025-11-07 11:42:37.370489 beam-core,unknown,Database.Beam.Query.CustomSQL,IsCustomSqlSyntax,Database/Beam/Query/CustomSQL.hs:65:3-19,"class (Monoid (CustomSqlSyntax syntax), Semigroup (CustomSqlSyntax syntax), IsString (CustomSqlSyntax syntax)) => IsCustomSqlSyntax syntax where data CustomSqlSyntax syntax :: Type customExprSyntax :: CustomSqlSyntax syntax -> syntax renderSyntax :: syntax -> CustomSqlSyntax syntax",64,74,2025-11-07 11:42:37.370494,2025-11-07 11:42:37.370494 beam-core,unknown,Database.Beam.Query.CustomSQL,IsCustomExprFn,Database/Beam/Query/CustomSQL.hs:93:7-20,"class IsCustomExprFn fn res | res -> fn where customExpr_ :: fn -> res",93,94,2025-11-07 11:42:37.370501,2025-11-07 11:42:37.370501 beam-core,unknown,Database.Beam.Query.Combinators,SqlUpdatable,Database/Beam/Query/Combinators.hs:442:3-14,"class BeamSqlBackend be => SqlUpdatable be s lhs rhs | rhs -> be, lhs -> s, rhs -> s, lhs s be -> rhs, rhs -> lhs where (<-.) :: lhs -> rhs -> QAssignment be s",441,451,2025-11-07 11:42:37.370506,2025-11-07 11:42:37.370506 beam-core,unknown,Database.Beam.Query.Combinators,SqlValable,Database/Beam/Query/Combinators.hs:554:7-16,"class SqlValable a where val_ :: HaskellLiteralForQExpr a -> a",554,555,2025-11-07 11:42:37.370515,2025-11-07 11:42:37.370515 beam-core,unknown,Database.Beam.Query.Combinators,SqlOrderable,Database/Beam/Query/Combinators.hs:669:7-18,"class SqlOrderable be a | a -> be where makeSQLOrdering :: Proxy be -> a -> [WithExprContext (BeamSqlBackendOrderingSyntax be)]",669,670,2025-11-07 11:42:37.370520,2025-11-07 11:42:37.370520 beam-core,unknown,Database.Beam.Query.Combinators,SqlJustable,Database/Beam/Query/Combinators.hs:828:7-17,"class SqlJustable a b | b -> a where just_ :: a -> b nothing_ :: b",828,838,2025-11-07 11:42:37.370526,2025-11-07 11:42:37.370526 beam-migrate,unknown,Database.Beam.Migrate.Checks,HasDataTypeCreatedCheck,Database/Beam/Migrate/Checks.hs:42:7-29,"class HasDataTypeCreatedCheck dataType where dataTypeHasBeenCreated :: dataType -> (forall preCondition. Typeable preCondition => [preCondition]) -> Bool",42,43,2025-11-07 11:42:38.802877,2025-11-07 11:42:38.802877 constraints,unknown,Data.Constraint,HasDict,src/Data/Constraint.hs:167:7-13,"class HasDict c e | e -> c where evidence :: e -> Dict c",167,168,2025-11-07 11:47:05.555949,2025-11-07 11:47:05.555949 beam-core,unknown,Database.Beam.Query.Combinators,SqlDeconstructMaybe,Database/Beam/Query/Combinators.hs:916:28-46,"class BeamSqlBackend be => SqlDeconstructMaybe be a nonNullA s | a s -> be, a -> nonNullA, a -> s, nonNullA -> s where isJust_ :: a -> QGenExpr ctxt be s Bool isNothing_ :: a -> QGenExpr ctxt be s Bool maybe_ :: QGenExpr ctxt be s y -> (nonNullA -> QGenExpr ctxt be s y) -> a -> QGenExpr ctxt be s y",916,926,2025-11-07 11:42:37.370531,2025-11-07 11:42:37.370531 beam-migrate,unknown,Database.Beam.Migrate.Generics.Types,GAutoMigratableDb,Database/Beam/Migrate/Generics/Types.hs:11:7-23,"class GAutoMigratableDb be x where defaultMigratableDbSettings' :: Proxy be -> x ()",11,12,2025-11-07 11:42:38.802891,2025-11-07 11:42:38.802891 beam-migrate,unknown,Database.Beam.Migrate.Generics.Tables,GMigratableTableSettings,Database/Beam/Migrate/Generics/Tables.hs:39:35-58,"class BeamMigrateSqlBackend be => GMigratableTableSettings be (i :: Type -> Type) fieldCheck where gDefaultTblSettingsChecks :: Proxy be -> Proxy i -> Bool -> fieldCheck ()",39,40,2025-11-07 11:42:38.802899,2025-11-07 11:42:38.802899 beam-migrate,unknown,Database.Beam.Migrate.Generics.Tables,HasNullableConstraint,Database/Beam/Migrate/Generics/Tables.hs:90:35-55,"class BeamMigrateSqlBackend be => HasNullableConstraint (x :: Bool) be where nullableConstraint :: Proxy x -> Proxy be -> [FieldCheck]",90,91,2025-11-07 11:42:38.802907,2025-11-07 11:42:38.802907 beam-migrate,unknown,Database.Beam.Migrate.Generics.Tables,HasDefaultSqlDataType,Database/Beam/Migrate/Generics/Tables.hs:112:35-55,"class BeamMigrateSqlBackend be => HasDefaultSqlDataType be ty where defaultSqlDataType :: Proxy ty "" Concrete representation of the type"" -> Proxy be "" Concrete representation of the backend"" -> Bool "" 'True' if this field is in an embedded key or table, 'False' otherwise"" -> BeamSqlBackendDataTypeSyntax be defaultSqlDataTypeConstraints :: Proxy ty "" Concrete representation of the type"" -> Proxy be "" Concrete representation of the backend"" -> Bool "" 'True' if this field is embedded in a foreign key, 'False' otherwise. For example, @SERIAL@ types in postgres get a @DEFAULT@ constraint, but @SERIAL@ types in a foreign key do not."" -> [FieldCheck] defaultSqlDataTypeConstraints _ _ _ = []",112,132,2025-11-07 11:42:38.802914,2025-11-07 11:42:38.802914 beam-migrate,unknown,Database.Beam.Migrate.Types.Predicates,DatabasePredicate,Database/Beam/Migrate/Types/Predicates.hs:29:41-57,"class (Typeable p, Hashable p, Eq p) => DatabasePredicate p where englishDescription :: p -> String predicateSpecificity :: proxy p -> PredicateSpecificity serializePredicate :: p -> Value predicateCascadesDropOn :: DatabasePredicate p' => p -> p' -> Bool predicateCascadesDropOn _ _ = False",29,52,2025-11-07 11:42:38.802928,2025-11-07 11:42:38.802928 beam-migrate,unknown,Database.Beam.Migrate.Types.CheckedEntities,IsCheckedDatabaseEntity,Database/Beam/Migrate/Types/CheckedEntities.hs:33:37-59,"class IsDatabaseEntity be entity => IsCheckedDatabaseEntity be entity where data CheckedDatabaseEntityDescriptor be entity :: Type type CheckedDatabaseEntityDefaultRequirements be entity :: Constraint unCheck :: CheckedDatabaseEntityDescriptor be entity -> DatabaseEntityDescriptor be entity unCheck d = d ^. unChecked unChecked :: Lens' (CheckedDatabaseEntityDescriptor be entity) (DatabaseEntityDescriptor be entity) collectEntityChecks :: CheckedDatabaseEntityDescriptor be entity -> [SomeDatabasePredicate] checkedDbEntityAuto :: CheckedDatabaseEntityDefaultRequirements be entity => Text -> CheckedDatabaseEntityDescriptor be entity",33,55,2025-11-07 11:42:38.802937,2025-11-07 11:42:38.802937 beam-migrate,unknown,Database.Beam.Migrate.SQL.Types,BeamMigrateOnlySqlBackend,Database/Beam/Migrate/SQL/Types.hs:54:12-36,"class (Typeable (BeamSqlBackendSyntax be), IsSql92DdlCommandSyntax (BeamSqlBackendSyntax be), Sql92SaneDdlCommandSyntaxMigrateOnly (BeamSqlBackendSyntax be), Sql92DisplaySyntax (BeamMigrateSqlBackendDataTypeSyntax be), Eq (BeamMigrateSqlBackendDataTypeSyntax be), Typeable (BeamMigrateSqlBackendDataTypeSyntax be), Sql92SerializableDataTypeSyntax (BeamMigrateSqlBackendDataTypeSyntax be), Sql92SerializableConstraintDefinitionSyntax (BeamSqlBackendColumnConstraintDefinitionSyntax be), Sql92DisplaySyntax (BeamSqlBackendColumnConstraintDefinitionSyntax be), Eq (BeamSqlBackendColumnConstraintDefinitionSyntax be), Typeable be) => BeamMigrateOnlySqlBackend be",40,54,2025-11-07 11:42:38.802950,2025-11-07 11:42:38.802950 beam-migrate,unknown,Database.Beam.Migrate.SQL.Tables,FieldReturnType,Database/Beam/Migrate/SQL/Tables.hs:291:7-21,"class FieldReturnType (defaultGiven :: Bool) (collationGiven :: Bool) be resTy a | a -> be resTy where field' :: BeamMigrateSqlBackend be => Proxy defaultGiven -> Proxy collationGiven -> Text -> BeamMigrateSqlBackendDataTypeSyntax be -> Maybe (BeamSqlBackendExpressionSyntax be) -> Maybe Text -> [BeamSqlBackendColumnConstraintDefinitionSyntax be] -> a",291,298,2025-11-07 11:42:38.802963,2025-11-07 11:42:38.802963 beam-migrate,unknown,Database.Beam.Migrate.SQL.BeamExtensions,BeamSqlBackendHasSerial,Database/Beam/Migrate/SQL/BeamExtensions.hs:33:3-25,"class BeamMigrateSqlBackend be => BeamSqlBackendHasSerial be where genericSerial :: FieldReturnType 'True 'False be (SqlSerial Int) a => Text -> a",32,34,2025-11-07 11:42:38.802973,2025-11-07 11:42:38.802973 beam-migrate,unknown,Database.Beam.Migrate.SQL.SQL92,IsSql92DdlCommandSyntax,Database/Beam/Migrate/SQL/SQL92.hs:67:3-25,"class (IsSql92CreateTableSyntax (Sql92DdlCommandCreateTableSyntax syntax), IsSql92DropTableSyntax (Sql92DdlCommandDropTableSyntax syntax), IsSql92AlterTableSyntax (Sql92DdlCommandAlterTableSyntax syntax)) => IsSql92DdlCommandSyntax syntax where type Sql92DdlCommandCreateTableSyntax syntax :: Type type Sql92DdlCommandAlterTableSyntax syntax :: Type type Sql92DdlCommandDropTableSyntax syntax :: Type createTableCmd :: Sql92DdlCommandCreateTableSyntax syntax -> syntax dropTableCmd :: Sql92DdlCommandDropTableSyntax syntax -> syntax alterTableCmd :: Sql92DdlCommandAlterTableSyntax syntax -> syntax",64,74,2025-11-07 11:42:38.802980,2025-11-07 11:42:38.802980 beam-migrate,unknown,Database.Beam.Migrate.SQL.SQL92,IsSql92CreateTableSyntax,Database/Beam/Migrate/SQL/SQL92.hs:79:5-28,"class (IsSql92TableConstraintSyntax (Sql92CreateTableTableConstraintSyntax syntax), IsSql92ColumnSchemaSyntax (Sql92CreateTableColumnSchemaSyntax syntax), IsSql92TableNameSyntax (Sql92CreateTableTableNameSyntax syntax)) => IsSql92CreateTableSyntax syntax where type Sql92CreateTableTableNameSyntax syntax :: Type type Sql92CreateTableColumnSchemaSyntax syntax :: Type type Sql92CreateTableTableConstraintSyntax syntax :: Type type Sql92CreateTableOptionsSyntax syntax :: Type createTableSyntax :: Maybe (Sql92CreateTableOptionsSyntax syntax) -> Sql92CreateTableTableNameSyntax syntax -> [(Text, Sql92CreateTableColumnSchemaSyntax syntax)] -> [Sql92CreateTableTableConstraintSyntax syntax] -> syntax",76,90,2025-11-07 11:42:38.802991,2025-11-07 11:42:38.802991 beam-migrate,unknown,Database.Beam.Migrate.SQL.SQL92,IsSql92DropTableSyntax,Database/Beam/Migrate/SQL/SQL92.hs:93:3-24,"class IsSql92TableNameSyntax (Sql92DropTableTableNameSyntax syntax) => IsSql92DropTableSyntax syntax where type Sql92DropTableTableNameSyntax syntax :: Type dropTableSyntax :: Sql92DropTableTableNameSyntax syntax -> syntax",92,96,2025-11-07 11:42:38.803004,2025-11-07 11:42:38.803004 beam-migrate,unknown,Database.Beam.Migrate.SQL.SQL92,IsSql92AlterTableSyntax,Database/Beam/Migrate/SQL/SQL92.hs:100:3-25,"class (IsSql92TableNameSyntax (Sql92AlterTableTableNameSyntax syntax), IsSql92AlterTableActionSyntax (Sql92AlterTableAlterTableActionSyntax syntax)) => IsSql92AlterTableSyntax syntax where type Sql92AlterTableTableNameSyntax syntax :: Type type Sql92AlterTableAlterTableActionSyntax syntax :: Type alterTableSyntax :: Sql92AlterTableTableNameSyntax syntax -> Sql92AlterTableAlterTableActionSyntax syntax -> syntax",98,106,2025-11-07 11:42:38.803011,2025-11-07 11:42:38.803011 beam-migrate,unknown,Database.Beam.Migrate.SQL.SQL92,IsSql92AlterTableActionSyntax,Database/Beam/Migrate/SQL/SQL92.hs:110:3-31,"class (IsSql92ColumnSchemaSyntax (Sql92AlterTableColumnSchemaSyntax syntax), IsSql92AlterColumnActionSyntax (Sql92AlterTableAlterColumnActionSyntax syntax)) => IsSql92AlterTableActionSyntax syntax where type Sql92AlterTableAlterColumnActionSyntax syntax :: Type type Sql92AlterTableColumnSchemaSyntax syntax :: Type alterColumnSyntax :: Text -> Sql92AlterTableAlterColumnActionSyntax syntax -> syntax addColumnSyntax :: Text -> Sql92AlterTableColumnSchemaSyntax syntax -> syntax dropColumnSyntax :: Text -> syntax renameTableToSyntax :: Text -> syntax renameColumnToSyntax :: Text -> Text -> syntax",108,118,2025-11-07 11:42:38.803060,2025-11-07 11:42:38.803060 beam-migrate,unknown,Database.Beam.Migrate.SQL.SQL92,IsSql92AlterColumnActionSyntax,Database/Beam/Migrate/SQL/SQL92.hs:120:7-36,"class IsSql92AlterColumnActionSyntax syntax where setNotNullSyntax, setNullSyntax :: syntax",120,121,2025-11-07 11:42:38.803073,2025-11-07 11:42:38.803073 beam-migrate,unknown,Database.Beam.Migrate.SQL.SQL92,IsSql92ColumnSchemaSyntax,Database/Beam/Migrate/SQL/SQL92.hs:134:3-27,"class (IsSql92ColumnConstraintDefinitionSyntax (Sql92ColumnSchemaColumnConstraintDefinitionSyntax columnSchema), IsSql92DataTypeSyntax (Sql92ColumnSchemaColumnTypeSyntax columnSchema), Typeable (Sql92ColumnSchemaColumnTypeSyntax columnSchema), Sql92DisplaySyntax (Sql92ColumnSchemaColumnTypeSyntax columnSchema), Hashable (Sql92ColumnSchemaColumnTypeSyntax columnSchema), Eq (Sql92ColumnSchemaColumnTypeSyntax columnSchema), Sql92DisplaySyntax (Sql92ColumnSchemaColumnConstraintDefinitionSyntax columnSchema), Eq (Sql92ColumnSchemaColumnConstraintDefinitionSyntax columnSchema), Hashable (Sql92ColumnSchemaColumnConstraintDefinitionSyntax columnSchema), IsSql92ExpressionSyntax (Sql92ColumnSchemaExpressionSyntax columnSchema), Typeable columnSchema, Sql92DisplaySyntax columnSchema, Eq columnSchema, Hashable columnSchema) => IsSql92ColumnSchemaSyntax columnSchema where type Sql92ColumnSchemaColumnTypeSyntax columnSchema :: Type type Sql92ColumnSchemaExpressionSyntax columnSchema :: Type type Sql92ColumnSchemaColumnConstraintDefinitionSyntax columnSchema :: Type columnSchemaSyntax :: Sql92ColumnSchemaColumnTypeSyntax columnSchema "" Column type "" -> Maybe (Sql92ColumnSchemaExpressionSyntax columnSchema) "" Default value "" -> [Sql92ColumnSchemaColumnConstraintDefinitionSyntax columnSchema] "" Column constraints "" -> Maybe Text "" Default collation "" -> columnSchema",123,143,2025-11-07 11:42:38.803079,2025-11-07 11:42:38.803079 beam-migrate,unknown,Database.Beam.Migrate.SQL.SQL92,IsSql92TableConstraintSyntax,Database/Beam/Migrate/SQL/SQL92.hs:145:30-57,"class Typeable constraint => IsSql92TableConstraintSyntax constraint where primaryKeyConstraintSyntax :: [Text] -> constraint",145,146,2025-11-07 11:42:38.803100,2025-11-07 11:42:38.803100 beam-migrate,unknown,Database.Beam.Migrate.SQL.SQL92,IsSql92MatchTypeSyntax,Database/Beam/Migrate/SQL/SQL92.hs:148:25-46,"class Typeable match => IsSql92MatchTypeSyntax match where fullMatchSyntax :: match partialMatchSyntax :: match",148,150,2025-11-07 11:42:38.803107,2025-11-07 11:42:38.803107 beam-migrate,unknown,Database.Beam.Migrate.SQL.SQL92,IsSql92ReferentialActionSyntax,Database/Beam/Migrate/SQL/SQL92.hs:152:29-58,"class Typeable refAction => IsSql92ReferentialActionSyntax refAction where referentialActionCascadeSyntax :: refAction referentialActionSetNullSyntax :: refAction referentialActionSetDefaultSyntax :: refAction referentialActionNoActionSyntax :: refAction",152,156,2025-11-07 11:42:38.803113,2025-11-07 11:42:38.803113 beam-migrate,unknown,Database.Beam.Migrate.SQL.SQL92,IsSql92ColumnConstraintDefinitionSyntax,Database/Beam/Migrate/SQL/SQL92.hs:161:7-45,"class (IsSql92ColumnConstraintSyntax (Sql92ColumnConstraintDefinitionConstraintSyntax constraint), IsSql92ConstraintAttributesSyntax (Sql92ColumnConstraintDefinitionAttributesSyntax constraint), Typeable constraint) => IsSql92ColumnConstraintDefinitionSyntax constraint where type Sql92ColumnConstraintDefinitionConstraintSyntax constraint :: Type type Sql92ColumnConstraintDefinitionAttributesSyntax constraint :: Type constraintDefinitionSyntax :: Maybe Text -> Sql92ColumnConstraintDefinitionConstraintSyntax constraint -> Maybe (Sql92ColumnConstraintDefinitionAttributesSyntax constraint) -> constraint",158,167,2025-11-07 11:42:38.803120,2025-11-07 11:42:38.803120 beam-migrate,unknown,Database.Beam.Migrate.SQL.SQL92,IsSql92ConstraintAttributesSyntax,Database/Beam/Migrate/SQL/SQL92.hs:169:58-90,"class (Semigroup attrs, Monoid attrs, Typeable attrs) => IsSql92ConstraintAttributesSyntax attrs where initiallyDeferredAttributeSyntax :: attrs initiallyImmediateAttributeSyntax :: attrs notDeferrableAttributeSyntax :: attrs deferrableAttributeSyntax :: attrs",169,173,2025-11-07 11:42:38.803132,2025-11-07 11:42:38.803132 beam-migrate,unknown,Database.Beam.Migrate.SQL.SQL92,IsSql92ColumnConstraintSyntax,Database/Beam/Migrate/SQL/SQL92.hs:179:3-31,"class (IsSql92MatchTypeSyntax (Sql92ColumnConstraintMatchTypeSyntax constraint), IsSql92ReferentialActionSyntax (Sql92ColumnConstraintReferentialActionSyntax constraint), Typeable (Sql92ColumnConstraintExpressionSyntax constraint), Typeable constraint) => IsSql92ColumnConstraintSyntax constraint where type Sql92ColumnConstraintMatchTypeSyntax constraint :: Type type Sql92ColumnConstraintReferentialActionSyntax constraint :: Type type Sql92ColumnConstraintExpressionSyntax constraint :: Type notNullConstraintSyntax :: constraint uniqueColumnConstraintSyntax :: constraint primaryKeyColumnConstraintSyntax :: constraint checkColumnConstraintSyntax :: Sql92ColumnConstraintExpressionSyntax constraint -> constraint referencesConstraintSyntax :: Text -> [Text] -> Maybe (Sql92ColumnConstraintMatchTypeSyntax constraint) -> Maybe (Sql92ColumnConstraintReferentialActionSyntax constraint) "" On update "" -> Maybe (Sql92ColumnConstraintReferentialActionSyntax constraint) "" On delete "" -> constraint",175,192,2025-11-07 11:42:38.803140,2025-11-07 11:42:38.803140 beam-migrate,unknown,Database.Beam.Migrate.SQL.SQL92,Sql92SerializableDataTypeSyntax,Database/Beam/Migrate/SQL/SQL92.hs:195:7-37,"class Sql92SerializableDataTypeSyntax dataType where serializeDataType :: dataType -> Value",195,196,2025-11-07 11:42:38.803157,2025-11-07 11:42:38.803157 beam-migrate,unknown,Database.Beam.Migrate.SQL.SQL92,Sql92SerializableConstraintDefinitionSyntax,Database/Beam/Migrate/SQL/SQL92.hs:199:7-49,"class Sql92SerializableConstraintDefinitionSyntax constraint where serializeConstraint :: constraint -> Value",199,200,2025-11-07 11:42:38.803163,2025-11-07 11:42:38.803163 beam-mysql,unknown,Database.Beam.MySQL.FromField.Lenient,FromField,src/Database/Beam/MySQL/FromField/Lenient.hs:25:31-39,"class (Strict.FromField a) => FromField (a :: Type) where {-# INLINEABLE fromField #-} fromField :: MySQLValue -> Either (DecodeError Lenient) a fromField v = case Strict.fromField v of Left (DecodeError err t) -> Left . DecodeError (SomeStrict err) $ t Right res -> pure res",25,30,2025-11-07 11:42:40.123059,2025-11-07 11:42:40.123059 beam-mysql,unknown,Database.Beam.MySQL.FromField.Strict,FromField,src/Database/Beam/MySQL/FromField/Strict.hs:26:7-15,"class FromField (a :: Type) where fromField :: MySQLValue -> Either (DecodeError Strict) a",26,27,2025-11-07 11:42:40.123076,2025-11-07 11:42:40.123076 beam-postgres,unknown,Database.Beam.Postgres.CustomTypes,IsPgCustomDataType,Database/Beam/Postgres/CustomTypes.hs:57:7-24,"class IsPgCustomDataType a where pgDataTypeName :: Proxy a -> Text pgDataTypeDescription :: PgDataTypeSchema a",57,59,2025-11-07 11:42:41.531842,2025-11-07 11:42:41.531842 beam-postgres,unknown,Database.Beam.Postgres.Extensions,IsPgExtension,Database/Beam/Postgres/Extensions.hs:81:7-19,"class IsPgExtension extension where pgExtensionName :: Proxy extension -> Text pgExtensionBuild :: extension",81,89,2025-11-07 11:42:41.531862,2025-11-07 11:42:41.531862 beam-postgres,unknown,Database.Beam.Postgres.Full,PgReturning,Database/Beam/Postgres/Full.hs:400:7-17,"class PgReturning cmd where type PgReturningType cmd :: Type -> Type returning :: (Beamable tbl, Projectible Postgres a) => cmd Postgres tbl -> (tbl (QExpr Postgres PostgresInaccessible) -> a) -> PgReturningType cmd (QExprToIdentity a)",400,405,2025-11-07 11:42:41.531870,2025-11-07 11:42:41.531870 beam-postgres,unknown,Database.Beam.Postgres.Debug,PgDebugStmt,Database/Beam/Postgres/Debug.hs:38:7-17,"class PgDebugStmt statement where pgStmtSyntax :: statement -> Maybe PgSyntax",38,39,2025-11-07 11:42:41.531878,2025-11-07 11:42:41.531878 beam-postgres,unknown,Database.Beam.Postgres.PgSpecific,PgIsArrayContext,Database/Beam/Postgres/PgSpecific.hs:407:7-22,"class PgIsArrayContext ctxt where mkArraySyntax :: Proxy ctxt -> PgSyntax -> PgSyntax mkArraySyntax _ s = emit ""ARRAY"" <> s",407,409,2025-11-07 11:42:41.531884,2025-11-07 11:42:41.531884 beam-postgres,unknown,Database.Beam.Postgres.PgSpecific,PgIsRange,Database/Beam/Postgres/PgSpecific.hs:485:7-15,"class PgIsRange n where rangeName :: ByteString",485,487,2025-11-07 11:42:41.531890,2025-11-07 11:42:41.531890 beam-postgres,unknown,Database.Beam.Postgres.PgSpecific,IsPgJSON,Database/Beam/Postgres/PgSpecific.hs:775:7-14,"class IsPgJSON (json :: Type -> Type) where pgJsonEach :: QGenExpr ctxt Postgres s (json a) -> QGenExpr ctxt Postgres s (PgSetOf (PgJSONEach (json Value))) pgJsonEachText :: QGenExpr ctxt Postgres s (json a) -> QGenExpr ctxt Postgres s (PgSetOf (PgJSONEach T.Text)) pgJsonKeys :: QGenExpr ctxt Postgres s (json a) -> QGenExpr ctxt Postgres s (PgSetOf PgJSONKey) pgJsonArrayElements :: QGenExpr ctxt Postgres s (json a) -> QGenExpr ctxt Postgres s (PgSetOf (PgJSONElement (json Value))) pgJsonArrayElementsText :: QGenExpr ctxt Postgres s (json a) -> QGenExpr ctxt Postgres s (PgSetOf (PgJSONElement T.Text)) pgJsonTypeOf :: QGenExpr ctxt Postgres s (json a) -> QGenExpr ctxt Postgres s T.Text pgJsonStripNulls :: QGenExpr ctxt Postgres s (json a) -> QGenExpr ctxt Postgres s (json b) pgJsonAgg :: QExpr Postgres s a -> QAgg Postgres s (json a) pgJsonObjectAgg :: QExpr Postgres s key -> QExpr Postgres s value -> QAgg Postgres s (json a)",775,814,2025-11-07 11:42:41.531896,2025-11-07 11:42:41.531896 bifunctors,unknown,Data.Biapplicative,Biapplicative,src/Data/Biapplicative.hs:53:22-34,"class Bifunctor p => Biapplicative p where {-# MINIMAL bipure, ((<<*>>) | biliftA2) #-} bipure :: a -> b -> p a b (<<*>>) :: p (a -> b) (c -> d) -> p a c -> p b d (<<*>>) = biliftA2 id id {-# INLINE (<<*>>) #-} biliftA2 :: (a -> b -> c) -> (d -> e -> f) -> p a d -> p b e -> p c f biliftA2 f g a b = bimap f g <<$>> a <<*>> b {-# INLINE biliftA2 #-} (*>>) :: p a b -> p c d -> p c d a *>> b = biliftA2 (const id) (const id) a b {-# INLINE (*>>) #-} (<<*) :: p a b -> p c d -> p a b a <<* b = biliftA2 const const a b {-# INLINE (<<*) #-}",53,82,2025-11-07 11:42:44.225251,2025-11-07 11:42:44.225251 bifunctors,unknown,Data.Bifunctor.Functor,BifunctorFunctor,src/Data/Bifunctor/Functor.hs:28:7-22,"class BifunctorFunctor t where bifmap :: (p :-> q) -> t p :-> t q",28,29,2025-11-07 11:42:44.225273,2025-11-07 11:42:44.225273 bifunctors,unknown,Data.Bifunctor.Functor,BifunctorMonad,src/Data/Bifunctor/Functor.hs:31:29-42,"class BifunctorFunctor t => BifunctorMonad t where bireturn :: p :-> t p bibind :: (p :-> t q) -> t p :-> t q bibind f = bijoin . bifmap f bijoin :: t (t p) :-> t p bijoin = bibind id {-# MINIMAL bireturn, (bibind | bijoin) #-}",31,38,2025-11-07 11:42:44.225280,2025-11-07 11:42:44.225280 bifunctors,unknown,Data.Bifunctor.Functor,BifunctorComonad,src/Data/Bifunctor/Functor.hs:45:29-44,"class BifunctorFunctor t => BifunctorComonad t where biextract :: t p :-> p biextend :: (t p :-> q) -> t p :-> t q biextend f = bifmap f . biduplicate biduplicate :: t p :-> t (t p) biduplicate = biextend id {-# MINIMAL biextract, (biextend | biduplicate) #-}",45,52,2025-11-07 11:42:44.225287,2025-11-07 11:42:44.225287 blaze-markup,unknown,Text.Blaze,ToMarkup,src/Text/Blaze.hs:109:7-14,"class ToMarkup a where toMarkup :: a -> Markup preEscapedToMarkup :: a -> Markup preEscapedToMarkup = toMarkup {-# INLINE preEscapedToMarkup #-}",109,118,2025-11-07 11:42:52.390021,2025-11-07 11:42:52.390021 blaze-markup,unknown,Text.Blaze,ToValue,src/Text/Blaze.hs:204:7-13,"class ToValue a where toValue :: a -> AttributeValue preEscapedToValue :: a -> AttributeValue preEscapedToValue = toValue {-# INLINE preEscapedToValue #-}",204,213,2025-11-07 11:42:52.390036,2025-11-07 11:42:52.390036 blaze-markup,unknown,Text.Blaze.Internal,Attributable,src/Text/Blaze/Internal.hs:539:7-18,"class Attributable h where (!) :: h -> Attribute -> h",539,560,2025-11-07 11:42:52.390046,2025-11-07 11:42:52.390046 boring,unknown,Data.Boring,Boring,src/Data/Boring.hs:141:7-12,"class Boring a where boring :: a default boring :: (Generic a, GBoring (Rep a)) => a boring = to gboring",141,144,2025-11-07 11:46:27.793540,2025-11-07 11:46:27.793540 boring,unknown,Data.Boring,Absurd,src/Data/Boring.hs:260:7-12,"class Absurd a where absurd :: a -> b default absurd :: (Generic a, GAbsurd (Rep a)) => a -> b absurd = gabsurd . from",260,263,2025-11-07 11:46:27.793549,2025-11-07 11:46:27.793549 boring,unknown,Data.Boring,GBoring,src/Data/Boring.hs:371:7-13,"class GBoring f where gboring :: f a",371,372,2025-11-07 11:46:27.793556,2025-11-07 11:46:27.793556 boring,unknown,Data.Boring,GAbsurd,src/Data/Boring.hs:398:7-13,"class GAbsurd f where gabsurd :: f a -> b",398,399,2025-11-07 11:46:27.793561,2025-11-07 11:46:27.793561 bson,unknown,Data.Bson,Val,Data/Bson.hs:225:37-39,"class (Typeable a, Show a, Eq a) => Val a where val :: a -> Value valList :: [a] -> Value valList = Array . map val valMaybe :: Maybe a -> Value valMaybe = maybe Null val cast' :: Value -> Maybe a cast'List :: Value -> Maybe [a] cast'List (Array x) = mapM cast x cast'List _ = Nothing cast'Maybe :: Value -> Maybe (Maybe a) cast'Maybe Null = Just Nothing cast'Maybe v = fmap Just (cast' v)",225,237,2025-11-07 11:46:30.461881,2025-11-07 11:46:30.461881 byte-order,unknown,System.ByteOrder.Class,Bytes,src/System/ByteOrder/Class.hs:29:7-11,"class Bytes a where toBigEndian :: a -> a toLittleEndian :: a -> a",29,33,2025-11-07 11:46:31.592909,2025-11-07 11:46:31.592909 byte-order,unknown,System.ByteOrder.Class,FixedOrdering,src/System/ByteOrder/Class.hs:159:7-19,"class FixedOrdering (b :: ByteOrder) where toFixedEndian :: Bytes a => a -> a",159,160,2025-11-07 11:46:31.592918,2025-11-07 11:46:31.592918 byteable,unknown,Data.Byteable,Byteable,Data/Byteable.hs:22:7-14,"class Byteable a where toBytes :: a -> ByteString byteableLength :: a -> Int byteableLength = B.length . toBytes withBytePtr :: a -> (Ptr Word8 -> IO b) -> IO b withBytePtr a f = withForeignPtr fptr $ \ ptr -> f (ptr `plusPtr` off) where (fptr, off, _) = B.toForeignPtr $ toBytes a",22,33,2025-11-07 11:46:32.755915,2025-11-07 11:46:32.755915 bytebuild,unknown,Data.Bytes.Builder.Class,ToBuilder,src/Data/Bytes/Builder/Class.hs:26:7-15,"class ToBuilder a where toBuilder :: a -> Builder",26,27,2025-11-07 11:46:33.961730,2025-11-07 11:46:33.961730 bytebuild,unknown,Data.Bytes.Builder.Bounded.Class,ToBoundedBuilder,src/Data/Bytes/Builder/Bounded/Class.hs:22:7-22,"class ToBoundedBuilder a where type BoundedBuilderLength a :: GHC.Nat toBuilder :: a -> Bounded.Builder (BoundedBuilderLength a)",22,24,2025-11-07 11:46:33.961744,2025-11-07 11:46:33.961744 bytesmith,unknown,Data.Bytes.Parser.Rebindable,Bind,src/Data/Bytes/Parser/Rebindable.hs:36:7-10,"class Bind (ra :: RuntimeRep) (rb :: RuntimeRep) where (>>=) :: forall e s (a :: TYPE ra) (b :: TYPE rb). Parser e s a -> (a -> Parser e s b) -> Parser e s b (>>) :: forall e s (a :: TYPE ra) (b :: TYPE rb). Parser e s a -> Parser e s b -> Parser e s b",36,40,2025-11-07 11:46:38.893343,2025-11-07 11:46:38.893343 bytesmith,unknown,Data.Bytes.Parser.Rebindable,Pure,src/Data/Bytes/Parser/Rebindable.hs:42:7-10,"class Pure (ra :: RuntimeRep) where pure :: forall e s (a :: TYPE ra). a -> Parser e s a",42,43,2025-11-07 11:46:38.893359,2025-11-07 11:46:38.893359 case-insensitive,unknown,Data.CaseInsensitive.Internal,FoldCase,Data/CaseInsensitive/Internal.hs:155:7-14,"class FoldCase s where foldCase :: s -> s foldCaseList :: [s] -> [s] foldCaseList = L.map foldCase",155,159,2025-11-07 11:46:44.510953,2025-11-07 11:46:44.510953 cassava,unknown,Data.Csv.Conversion,FromRecord,src/Data/Csv/Conversion.hs:201:7-16,"class FromRecord a where parseRecord :: Record -> Parser a default parseRecord :: (Generic a, GFromRecord (Rep a)) => Record -> Parser a parseRecord = genericParseRecord defaultOptions",201,205,2025-11-07 11:46:46.971940,2025-11-07 11:46:46.971940 cassava,unknown,Data.Csv.Conversion,ToRecord,src/Data/Csv/Conversion.hs:229:7-14,"class ToRecord a where toRecord :: a -> Record default toRecord :: (Generic a, GToRecord (Rep a) Field) => a -> Record toRecord = genericToRecord defaultOptions",229,234,2025-11-07 11:46:46.971953,2025-11-07 11:46:46.971953 cassava,unknown,Data.Csv.Conversion,FromNamedRecord,src/Data/Csv/Conversion.hs:635:7-21,"class FromNamedRecord a where parseNamedRecord :: NamedRecord -> Parser a default parseNamedRecord :: (Generic a, GFromNamedRecord (Rep a)) => NamedRecord -> Parser a parseNamedRecord = genericParseNamedRecord defaultOptions",635,639,2025-11-07 11:46:46.971961,2025-11-07 11:46:46.971961 cassava,unknown,Data.Csv.Conversion,ToNamedRecord,src/Data/Csv/Conversion.hs:658:7-19,"class ToNamedRecord a where toNamedRecord :: a -> NamedRecord default toNamedRecord :: (Generic a, GToRecord (Rep a) (B.ByteString, B.ByteString)) => a -> NamedRecord toNamedRecord = genericToNamedRecord defaultOptions",658,665,2025-11-07 11:46:46.971969,2025-11-07 11:46:46.971969 cassava,unknown,Data.Csv.Conversion,DefaultOrdered,src/Data/Csv/Conversion.hs:700:7-20,"class DefaultOrdered a where headerOrder :: a -> Header default headerOrder :: (Generic a, GToNamedRecordHeader (Rep a)) => a -> Header headerOrder = genericHeaderOrder defaultOptions",700,710,2025-11-07 11:46:46.971976,2025-11-07 11:46:46.971976 cassava,unknown,Data.Csv.Conversion,FromField,src/Data/Csv/Conversion.hs:760:7-15,"class FromField a where parseField :: Field -> Parser a",760,761,2025-11-07 11:46:46.971985,2025-11-07 11:46:46.971985 cassava,unknown,Data.Csv.Conversion,ToField,src/Data/Csv/Conversion.hs:775:7-13,"class ToField a where toField :: a -> Field",775,776,2025-11-07 11:46:46.971990,2025-11-07 11:46:46.971990 cassava,unknown,Data.Csv.Conversion,GFromRecord,src/Data/Csv/Conversion.hs:1284:7-17,"class GFromRecord f where gparseRecord :: Options -> Record -> Parser (f p)",1284,1285,2025-11-07 11:46:46.971995,2025-11-07 11:46:46.971995 cassava,unknown,Data.Csv.Conversion,GFromNamedRecord,src/Data/Csv/Conversion.hs:1295:7-22,"class GFromNamedRecord f where gparseNamedRecord :: Options -> NamedRecord -> Parser (f p)",1295,1296,2025-11-07 11:46:46.972000,2025-11-07 11:46:46.972000 cassava,unknown,Data.Csv.Conversion,GFromRecordSum,src/Data/Csv/Conversion.hs:1302:7-20,"class GFromRecordSum f r where gparseRecordSum :: Options -> IM.IntMap (r -> Parser (f p))",1302,1303,2025-11-07 11:46:46.972006,2025-11-07 11:46:46.972006 cassava,unknown,Data.Csv.Conversion,GFromRecordProd,src/Data/Csv/Conversion.hs:1316:7-21,"class GFromRecordProd f r where gparseRecordProd :: Options -> Int -> (Int, r -> Parser (f p))",1316,1317,2025-11-07 11:46:46.972011,2025-11-07 11:46:46.972011 cassava,unknown,Data.Csv.Conversion,GToRecord,src/Data/Csv/Conversion.hs:1343:7-15,"class GToRecord a f where gtoRecord :: Options -> a p -> [f]",1343,1344,2025-11-07 11:46:46.972017,2025-11-07 11:46:46.972017 cassava,unknown,Data.Csv.Conversion,GToNamedRecordHeader,src/Data/Csv/Conversion.hs:1376:7-26,"class GToNamedRecordHeader a where gtoNamedRecordHeader :: Options -> a p -> [Name]",1376,1378,2025-11-07 11:46:46.972022,2025-11-07 11:46:46.972022 cereal,unknown,Data.Serialize,Serialize,src/Data/Serialize.hs:105:7-15,"class Serialize t where put :: Putter t get :: Get t default put :: (Generic t, GSerializePut (Rep t)) => Putter t put = gPut . from default get :: (Generic t, GSerializeGet (Rep t)) => Get t get = to <$> gGet",105,115,2025-11-07 11:46:48.293198,2025-11-07 11:46:48.293198 cereal,unknown,Data.Serialize,GSerializePut,src/Data/Serialize.hs:587:7-19,"class GSerializePut f where gPut :: Putter (f a)",587,588,2025-11-07 11:46:48.293213,2025-11-07 11:46:48.293213 cereal,unknown,Data.Serialize,GSerializeGet,src/Data/Serialize.hs:590:7-19,"class GSerializeGet f where gGet :: Get (f a)",590,591,2025-11-07 11:46:48.293219,2025-11-07 11:46:48.293219 cereal,unknown,Data.Serialize,PutSum,src/Data/Serialize.hs:666:7-12,"class PutSum f where putSum :: (Num word, Bits word, Serialize word) => word -> word -> Putter (f a)",666,667,2025-11-07 11:46:48.293225,2025-11-07 11:46:48.293225 cereal,unknown,Data.Serialize,GetSum,src/Data/Serialize.hs:694:7-12,"class GetSum f where getSum :: (Ord word, Num word, Bits word) => word -> word -> Get (f a)",694,695,2025-11-07 11:46:48.293230,2025-11-07 11:46:48.293230 cereal,unknown,Data.Serialize,SumSize,src/Data/Serialize.hs:715:7-13,"class SumSize f where sumSize :: Tagged f Word64",715,716,2025-11-07 11:46:48.293239,2025-11-07 11:46:48.293239 classyplate,unknown,Data.Generics.ClassyPlate.Core,App,src/Data/Generics/ClassyPlate/Core.hs:44:7-9,"class App (flag :: Bool) c b where app :: FlagToken flag -> ClsToken c -> (forall a. (ClassyPlate c a, c a) => a -> a) -> b -> b appM :: Monad m => FlagToken flag -> ClsToken c -> (forall a. (ClassyPlate c a, c a) => a -> m a) -> b -> m b appTD :: FlagToken flag -> ClsToken c -> (forall a. (ClassyPlate c a, c a) => a -> a) -> (b -> b) -> b -> b appTDM :: Monad m => FlagToken flag -> ClsToken c -> (forall a. (ClassyPlate c a, c a) => a -> m a) -> (b -> m b) -> b -> m b",44,48,2025-11-07 11:46:51.950809,2025-11-07 11:46:51.950809 classyplate,unknown,Data.Generics.ClassyPlate.Core,ClassyPlate,src/Data/Generics/ClassyPlate/Core.hs:65:31-41,"class GoodOperationFor c b => ClassyPlate c b where bottomUp_ :: ClsToken c -> (forall a. (ClassyPlate c a, c a) => a -> a) -> b -> b bottomUpM_ :: Monad m => ClsToken c -> (forall a. (ClassyPlate c a, c a) => a -> m a) -> b -> m b descend_ :: ClsToken c -> (forall a. (ClassyPlate c a, c a) => a -> a) -> b -> b descendM_ :: Monad m => ClsToken c -> (forall a. (ClassyPlate c a, c a) => a -> m a) -> b -> m b topDown_ :: ClsToken c -> (forall a. (ClassyPlate c a, c a) => a -> a) -> b -> b topDownM_ :: Monad m => ClsToken c -> (forall a. (ClassyPlate c a, c a) => a -> m a) -> b -> m b",65,73,2025-11-07 11:46:51.950825,2025-11-07 11:46:51.950825 cmdargs,unknown,System.Console.CmdArgs.Helper,Packer,System/Console/CmdArgs/Helper.hs:193:7-12,"class Packer a where pack :: a -> Pack unpack :: Pack -> a",193,195,2025-11-07 11:46:54.740327,2025-11-07 11:46:54.740327 generics-sop,unknown,Example,Enumerable,test/Example.hs:34:7-16,"class Enumerable a where enum :: [a]",34,35,2025-11-07 11:49:07.352568,2025-11-07 11:49:07.352568 classyplate,unknown,Data.Generics.ClassyPlate.Core,SmartClassyPlate,src/Data/Generics/ClassyPlate/Core.hs:77:37-52,"class (GoodOperationForAuto c b) => SmartClassyPlate c (sel :: Bool) b where smartTraverse_ :: FlagToken sel -> ClsToken c -> (forall a. (ClassyPlate c a, c a) => a -> a) -> b -> b smartTraverseM_ :: Monad m => FlagToken sel -> ClsToken c -> (forall a. (ClassyPlate c a, c a) => a -> m a) -> b -> m b",77,79,2025-11-07 11:46:51.950839,2025-11-07 11:46:51.950839 classyplate,unknown,Data.Generics.ClassyPlate.Common,MonoMatch,src/Data/Generics/ClassyPlate/Common.hs:21:7-15,"class MonoMatch a b where monoApp :: (a -> a) -> b -> b",21,23,2025-11-07 11:46:51.950848,2025-11-07 11:46:51.950848 cmdargs,unknown,System.Console.CmdArgs.Explicit.Type,Remap,System/Console/CmdArgs/Explicit/Type.hs:186:7-11,"class Remap m where remap :: (a -> b) "" Embed a value"" -> (b -> (a, a -> b)) "" Extract the mode and give a way of re-embedding"" -> m a -> m b",186,190,2025-11-07 11:46:54.740334,2025-11-07 11:46:54.740334 colour,unknown,Data.Colour.Internal,AffineSpace,Data/Colour/Internal.hs:110:7-17,"class AffineSpace f where affineCombo :: (Num a) => [(a, f a)] -> f a -> f a",110,119,2025-11-07 11:46:57.272256,2025-11-07 11:46:57.272256 colour,unknown,Data.Colour.Internal,ColourOps,Data/Colour/Internal.hs:147:7-15,"class ColourOps f where over :: (Num a) => AlphaColour a -> f a -> f a darken :: (Num a) => a -> f a -> f a",147,155,2025-11-07 11:46:57.272270,2025-11-07 11:46:57.272270 comonad,unknown,Data.Functor.Composition,Composition,src/Data/Functor/Composition.hs:14:7-17,"class Composition o where decompose :: o f g x -> f (g x) compose :: f (g x) -> o f g x",14,16,2025-11-07 11:46:58.397242,2025-11-07 11:46:58.397242 comonad,unknown,Control.Comonad,Comonad,src/Control/Comonad.hs:127:20-26,"class Functor w => Comonad w where extract :: w a -> a duplicate :: w a -> w (w a) duplicate = extend id extend :: (w a -> b) -> w a -> w b extend f = fmap f . duplicate {-# MINIMAL extract, (duplicate | extend) #-}",127,150,2025-11-07 11:46:58.397252,2025-11-07 11:46:58.397252 comonad,unknown,Control.Comonad,ComonadApply,src/Control/Comonad.hs:256:20-31,"class Comonad w => ComonadApply w where (<@>) :: w (a -> b) -> w a -> w b default (<@>) :: Applicative w => w (a -> b) -> w a -> w b (<@>) = (<*>) (@>) :: w a -> w b -> w b a @> b = const id <$> a <@> b (<@) :: w a -> w b -> w a a <@ b = const <$> a <@> b",256,267,2025-11-07 11:46:58.397260,2025-11-07 11:46:58.397260 comonad,unknown,Control.Comonad.Hoist.Class,ComonadHoist,src/Control/Comonad/Hoist/Class.hs:25:7-18,"class ComonadHoist t where cohoist :: (Comonad w, Comonad v) => (forall x. w x -> v x) -> t w a -> t v a",25,28,2025-11-07 11:46:58.397268,2025-11-07 11:46:58.397268 comonad,unknown,Control.Comonad.Traced.Class,ComonadTraced,src/Control/Comonad/Traced/Class.hs:36:20-32,"class Comonad w => ComonadTraced m w | w -> m where trace :: m -> w a -> a",36,37,2025-11-07 11:46:58.397274,2025-11-07 11:46:58.397274 comonad,unknown,Control.Comonad.Env.Class,ComonadEnv,src/Control/Comonad/Env/Class.hs:34:20-29,"class Comonad w => ComonadEnv e w | w -> e where ask :: w a -> e",34,35,2025-11-07 11:46:58.397280,2025-11-07 11:46:58.397280 comonad,unknown,Control.Comonad.Trans.Class,ComonadTrans,src/Control/Comonad/Trans/Class.hs:23:7-18,"class ComonadTrans t where lower :: Comonad w => t w a -> w a",23,24,2025-11-07 11:46:58.397285,2025-11-07 11:46:58.397285 comonad,unknown,Control.Comonad.Store.Class,ComonadStore,src/Control/Comonad/Store/Class.hs:37:20-31,"class Comonad w => ComonadStore s w | w -> s where pos :: w a -> s peek :: s -> w a -> a peeks :: (s -> s) -> w a -> a peeks f w = peek (f (pos w)) w seek :: s -> w a -> w a seek s = peek s . duplicate seeks :: (s -> s) -> w a -> w a seeks f = peeks f . duplicate experiment :: Functor f => (s -> f s) -> w a -> f a experiment f w = fmap (`peek` w) (f (pos w))",37,51,2025-11-07 11:46:58.397290,2025-11-07 11:46:58.397290 concurrent-output,unknown,System.Console.Regions,LiftRegion,System/Console/Regions.hs:232:7-16,"class LiftRegion m where liftRegion :: STM a -> m a",232,233,2025-11-07 11:47:00.623533,2025-11-07 11:47:00.623533 concurrent-output,unknown,System.Console.Regions,ToRegionContent,System/Console/Regions.hs:242:7-21,"class ToRegionContent v where toRegionContent :: v -> RegionContent",242,243,2025-11-07 11:47:00.623543,2025-11-07 11:47:00.623543 concurrent-output,unknown,System.Console.Concurrent.Internal,Outputable,System/Console/Concurrent/Internal.hs:131:7-16,"class Outputable v where toOutput :: v -> T.Text",131,132,2025-11-07 11:47:00.623550,2025-11-07 11:47:00.623550 conduit-extra,unknown,Data.Conduit.Attoparsec,AttoparsecInput,Data/Conduit/Attoparsec.hs:74:7-21,"class AttoparsecInput a where parseA :: A.Parser a b -> a -> A.IResult a b feedA :: A.IResult a b -> a -> A.IResult a b empty :: a isNull :: a -> Bool getLinesCols :: a -> Position stripFromEnd :: a -> a -> a",74,84,2025-11-07 11:47:03.241545,2025-11-07 11:47:03.241545 conduit-extra,unknown,Data.Conduit.Lazy,MonadActive,Data/Conduit/Lazy.hs:80:18-28,"class Monad m => MonadActive m where monadActive :: m Bool",80,81,2025-11-07 11:47:03.241558,2025-11-07 11:47:03.241558 constraints,unknown,Data.Constraint,Bottom,src/Data/Constraint.hs:403:19-24,"class Exts.Any => Bottom where no :: a",403,404,2025-11-07 11:47:05.555961,2025-11-07 11:47:05.555961 constraints,unknown,Data.Constraint,Class,src/Data/Constraint.hs:450:7-11,"class Class b h | h -> b where cls :: h :- b",450,451,2025-11-07 11:47:05.555967,2025-11-07 11:47:05.555967 constraints,unknown,Data.Constraint,:=>,src/Data/Constraint.hs:467:9-11,"class b :=> h | h -> b where ins :: b :- h",467,468,2025-11-07 11:47:05.555972,2025-11-07 11:47:05.555972 constraints,unknown,Data.Constraint.Lifting,Lifting,src/Data/Constraint/Lifting.hs:69:7-13,"class Lifting p f where lifting :: p a :- p (f a)",69,70,2025-11-07 11:47:05.555977,2025-11-07 11:47:05.555977 constraints,unknown,Data.Constraint.Lifting,Lifting2,src/Data/Constraint/Lifting.hs:434:7-14,"class Lifting2 p f where lifting2 :: p a :- Lifting p (f a)",434,435,2025-11-07 11:47:05.555983,2025-11-07 11:47:05.555983 constraints,unknown,Data.Constraint.Forall,Forall_,src/Data/Constraint/Forall.hs:120:23-29,class p (Skolem p) => Forall_ (p :: k -> Constraint),120,120,2025-11-07 11:47:05.555988,2025-11-07 11:47:05.555988 constraints,unknown,Data.Constraint.Forall,ComposeC,src/Data/Constraint/Forall.hs:128:18-25,"class p (f a) => ComposeC (p :: k2 -> Constraint) (f :: k1 -> k2) (a :: k1)",128,128,2025-11-07 11:47:05.555993,2025-11-07 11:47:05.555993 constraints,unknown,Data.Constraint.Forall,ForallF,src/Data/Constraint/Forall.hs:132:32-38,"class Forall (ComposeC p f) => ForallF (p :: k2 -> Constraint) (f :: k1 -> k2)",132,132,2025-11-07 11:47:05.555999,2025-11-07 11:47:05.555999 constraints,unknown,Data.Constraint.Forall,R,src/Data/Constraint/Forall.hs:142:20,"class p (t a b) => R (p :: k3 -> Constraint) (t :: k1 -> k2 -> k3) (a :: k1) (b :: k2)",142,142,2025-11-07 11:47:05.556005,2025-11-07 11:47:05.556005 constraints,unknown,Data.Constraint.Forall,Q,src/Data/Constraint/Forall.hs:144:27,"class Forall (R p t a) => Q (p :: k3 -> Constraint) (t :: k1 -> k2 -> k3) (a :: k1)",144,144,2025-11-07 11:47:05.556011,2025-11-07 11:47:05.556011 constraints,unknown,Data.Constraint.Forall,ForallT,src/Data/Constraint/Forall.hs:148:25-31,"class Forall (Q p t) => ForallT (p :: k4 -> Constraint) (t :: (k1 -> k2) -> k3 -> k4)",148,148,2025-11-07 11:47:05.556017,2025-11-07 11:47:05.556017 constraints,unknown,Data.Constraint.Forall,ForallV_,src/Data/Constraint/Forall.hs:170:21-28,class ForallV' p => ForallV_ (p :: k),170,170,2025-11-07 11:47:05.556024,2025-11-07 11:47:05.556024 constraints,unknown,Data.Constraint.Forall,InstV,src/Data/Constraint/Forall.hs:175:7-11,"class InstV (p :: k) c | k c -> p where type ForallV' (p :: k) :: Constraint instV :: ForallV p :- c",175,177,2025-11-07 11:47:05.556029,2025-11-07 11:47:05.556029 constraints,unknown,Data.Constraint.Deferrable,Deferrable,src/Data/Constraint/Deferrable.hs:61:7-16,"class Deferrable p where deferEither :: proxy p -> (p => r) -> Either String r",61,63,2025-11-07 11:47:05.556035,2025-11-07 11:47:05.556035 constraints-extras,unknown,Data.Constraint.Compose,ComposeC,src/Data/Constraint/Compose.hs:17:18-25,"class p (f a) => ComposeC (p :: k2 -> Constraint) (f :: k1 -> k2) (a :: k1)",17,17,2025-11-07 11:47:06.660451,2025-11-07 11:47:06.660451 constraints-extras,unknown,Data.Constraint.Extras,ArgDict,src/Data/Constraint/Extras.hs:69:7-13,"class ArgDict (c :: k -> Constraint) (f :: k -> Type) where type ConstraintsFor f c :: Constraint argDict :: ConstraintsFor f c => f a -> Dict (c a)",69,78,2025-11-07 11:47:06.660461,2025-11-07 11:47:06.660461 constraints-extras,unknown,Data.Constraint.Extras,Implies1,src/Data/Constraint/Extras.hs:173:7-14,"class Implies1 c d where implies1 :: c a :- d a",173,174,2025-11-07 11:47:06.660469,2025-11-07 11:47:06.660469 constraints-extras,unknown,Data.Constraint.Flip,FlipC,src/Data/Constraint/Flip.hs:17:16-20,"class c h g => FlipC (c :: k -> k' -> Constraint) (g :: k') (h :: k)",17,17,2025-11-07 11:47:06.660474,2025-11-07 11:47:06.660474 contiguous,unknown,Data.Primitive.Contiguous.Class,Contiguous,src/Data/Primitive/Contiguous/Class.hs:80:7-16,"class Contiguous (arr :: Type -> Type) where type Mutable arr = (r :: Type -> Type -> Type) | r -> arr type Element arr :: Type -> Constraint type Sliced arr :: Type -> Type type MutableSliced arr :: Type -> Type -> Type new :: (PrimMonad m, Element arr b) => Int -> m (Mutable arr (PrimState m) b) replicateMut :: (PrimMonad m, Element arr b) => Int -> b -> m (Mutable arr (PrimState m) b) shrink :: (PrimMonad m, Element arr a) => Mutable arr (PrimState m) a -> Int "" new length"" -> m (Mutable arr (PrimState m) a) default shrink :: (ContiguousU arr, PrimMonad m, Element arr a) => Mutable arr (PrimState m) a -> Int -> m (Mutable arr (PrimState m) a) {-# INLINE shrink #-} shrink = resize empty :: arr a singleton :: Element arr a => a -> arr a doubleton :: Element arr a => a -> a -> arr a tripleton :: Element arr a => a -> a -> a -> arr a quadrupleton :: Element arr a => a -> a -> a -> a -> arr a index :: Element arr b => arr b -> Int -> b index# :: Element arr b => arr b -> Int -> (# b #) indexM :: (Element arr b, Monad m) => arr b -> Int -> m b read :: (PrimMonad m, Element arr b) => Mutable arr (PrimState m) b -> Int -> m b write :: (PrimMonad m, Element arr b) => Mutable arr (PrimState m) b -> Int -> b -> m () null :: arr b -> Bool size :: Element arr b => arr b -> Int sizeMut :: (PrimMonad m, Element arr b) => Mutable arr (PrimState m) b -> m Int equals :: (Element arr b, Eq b) => arr b -> arr b -> Bool equalsMut :: Mutable arr s a -> Mutable arr s a -> Bool slice :: (Element arr a) => arr a -> Int -> Int -> Sliced arr a sliceMut :: (Element arr a) => Mutable arr s a -> Int -> Int -> MutableSliced arr s a toSlice :: (Element arr a) => arr a -> Sliced arr a toSliceMut :: (PrimMonad m, Element arr a) => Mutable arr (PrimState m) a -> m (MutableSliced arr (PrimState m) a) clone :: Element arr b => Sliced arr b "" slice to copy"" -> arr b default clone :: (Sliced arr ~ Slice arr, ContiguousU arr, Element arr b) => Sliced arr b -> arr b {-# INLINE clone #-} clone Slice {offset, length, base} = clone_ (lift base) offset length clone_ :: Element arr a => arr a -> Int -> Int -> arr a cloneMut :: (PrimMonad m, Element arr b) => MutableSliced arr (PrimState m) b "" Array to copy a slice of"" -> m (Mutable arr (PrimState m) b) default cloneMut :: (MutableSliced arr ~ MutableSlice arr, ContiguousU arr, PrimMonad m, Element arr b) => MutableSliced arr (PrimState m) b -> m (Mutable arr (PrimState m) b) {-# INLINE cloneMut #-} cloneMut MutableSlice {offsetMut, lengthMut, baseMut} = cloneMut_ (liftMut baseMut) offsetMut lengthMut cloneMut_ :: (PrimMonad m, Element arr b) => Mutable arr (PrimState m) b "" Array to copy a slice of"" -> Int "" offset"" -> Int "" length"" -> m (Mutable arr (PrimState m) b) freeze :: (PrimMonad m, Element arr a) => MutableSliced arr (PrimState m) a -> m (arr a) default freeze :: (MutableSliced arr ~ MutableSlice arr, ContiguousU arr, PrimMonad m, Element arr a) => MutableSliced arr (PrimState m) a -> m (arr a) {-# INLINE freeze #-} freeze MutableSlice {offsetMut, lengthMut, baseMut} = freeze_ (liftMut baseMut) offsetMut lengthMut freeze_ :: (PrimMonad m, Element arr b) => Mutable arr (PrimState m) b -> Int "" offset"" -> Int "" length"" -> m (arr b) unsafeFreeze :: (PrimMonad m, Element arr b) => Mutable arr (PrimState m) b -> m (arr b) unsafeFreeze xs = unsafeShrinkAndFreeze xs =<< sizeMut xs {-# INLINE unsafeFreeze #-} unsafeShrinkAndFreeze :: (PrimMonad m, Element arr a) => Mutable arr (PrimState m) a -> Int "" final size"" -> m (arr a) default unsafeShrinkAndFreeze :: (ContiguousU arr, PrimMonad m, Element arr a) => Mutable arr (PrimState m) a -> Int -> m (arr a) {-# INLINE unsafeShrinkAndFreeze #-} unsafeShrinkAndFreeze arr0 len' = resize arr0 len' >>= unsafeFreeze thaw :: (PrimMonad m, Element arr b) => Sliced arr b -> m (Mutable arr (PrimState m) b) default thaw :: (Sliced arr ~ Slice arr, ContiguousU arr, PrimMonad m, Element arr b) => Sliced arr b -> m (Mutable arr (PrimState m) b) {-# INLINE thaw #-} thaw Slice {offset, length, base} = thaw_ (lift base) offset length thaw_ :: (PrimMonad m, Element arr b) => arr b -> Int "" offset into the array"" -> Int "" length of the slice"" -> m (Mutable arr (PrimState m) b) copy :: (PrimMonad m, Element arr b) => Mutable arr (PrimState m) b "" destination array"" -> Int "" offset into destination array"" -> Sliced arr b "" source slice"" -> m () default copy :: (Sliced arr ~ Slice arr, ContiguousU arr, PrimMonad m, Element arr b) => Mutable arr (PrimState m) b -> Int -> Sliced arr b -> m () {-# INLINE copy #-} copy dst dstOff Slice {offset, length, base} = copy_ dst dstOff (lift base) offset length copy_ :: (PrimMonad m, Element arr b) => Mutable arr (PrimState m) b "" destination array"" -> Int "" offset into destination array"" -> arr b "" source array"" -> Int "" offset into source array"" -> Int "" number of elements to copy"" -> m () copyMut :: (PrimMonad m, Element arr b) => Mutable arr (PrimState m) b "" destination array"" -> Int "" offset into destination array"" -> MutableSliced arr (PrimState m) b "" source slice"" -> m () default copyMut :: (MutableSliced arr ~ MutableSlice arr, ContiguousU arr, PrimMonad m, Element arr b) => Mutable arr (PrimState m) b -> Int -> MutableSliced arr (PrimState m) b -> m () {-# INLINE copyMut #-} copyMut dst dstOff MutableSlice {offsetMut, lengthMut, baseMut} = copyMut_ dst dstOff (liftMut baseMut) offsetMut lengthMut copyMut_ :: (PrimMonad m, Element arr b) => Mutable arr (PrimState m) b "" destination array"" -> Int "" offset into destination array"" -> Mutable arr (PrimState m) b "" source array"" -> Int "" offset into source array"" -> Int "" number of elements to copy"" -> m () insertAt :: (Element arr b) => arr b "" slice to copy from"" -> Int "" index in the output array to insert at"" -> b "" element to insert"" -> arr b default insertAt :: (Element arr b, ContiguousU arr) => arr b -> Int -> b -> arr b insertAt src i x = run $ do dst <- replicateMut (size src + 1) x copy dst 0 (slice src 0 i) copy dst (i + 1) (slice src i (size src - i)) unsafeFreeze dst {-# inline insertAt #-} rnf :: (NFData a, Element arr a) => arr a -> () run :: (forall s. ST s (arr a)) -> arr a",80,388,2025-11-07 11:47:07.825828,2025-11-07 11:47:07.825828 contiguous,unknown,Data.Primitive.Contiguous.Class,ContiguousU,src/Data/Primitive/Contiguous/Class.hs:394:27-37,"class (Contiguous arr) => ContiguousU arr where type Unlifted arr = (r :: Type -> TYPE UnliftedRep) | r -> arr type UnliftedMut arr = (r :: Type -> Type -> TYPE UnliftedRep) | r -> arr resize :: (PrimMonad m, Element arr b) => Mutable arr (PrimState m) b -> Int -> m (Mutable arr (PrimState m) b) unlift :: arr b -> Unlifted arr b unliftMut :: Mutable arr s b -> UnliftedMut arr s b lift :: Unlifted arr b -> arr b liftMut :: UnliftedMut arr s b -> Mutable arr s b",394,419,2025-11-07 11:47:07.825919,2025-11-07 11:47:07.825919 contiguous,unknown,Data.Primitive.Contiguous.Class,Always,src/Data/Primitive/Contiguous/Class.hs:424:7-12,class Always a,424,424,2025-11-07 11:47:07.825931,2025-11-07 11:47:07.825931 contravariant,unknown,Data.Functor.Contravariant.Generic,Deciding,src/Data/Functor/Contravariant/Generic.hs:57:44-51,"class (Generic a, GDeciding q (Rep' a)) => Deciding q a where deciding :: Decidable f => p q -> (forall b. q b => f b) -> f a",57,59,2025-11-07 11:47:08.932062,2025-11-07 11:47:08.932062 contravariant,unknown,Data.Functor.Contravariant.Generic,GG,src/Data/Functor/Contravariant/Generic.hs:81:7-8,"class GG r where swizzle :: r p -> Swizzle r p",81,82,2025-11-07 11:47:08.932072,2025-11-07 11:47:08.932072 contravariant,unknown,Data.Functor.Contravariant.Generic,Deciding1,src/Data/Functor/Contravariant/Generic.hs:117:47-55,"class (Generic1 t, GDeciding1 q (Rep1' t)) => Deciding1 q t where deciding1 :: Decidable f => p q -> (forall b. q b => f b) -> f a -> f (t a)",117,119,2025-11-07 11:47:08.932079,2025-11-07 11:47:08.932079 contravariant,unknown,Data.Functor.Contravariant.Generic,GDeciding,src/Data/Functor/Contravariant/Generic.hs:125:7-15,"class GDeciding q t where gdeciding :: Decidable f => p q -> (forall b. q b => f b) -> f (t a)",125,127,2025-11-07 11:47:08.932086,2025-11-07 11:47:08.932086 contravariant,unknown,Data.Functor.Contravariant.Generic,GDeciding1,src/Data/Functor/Contravariant/Generic.hs:150:7-16,"class GDeciding1 q t where gdeciding1 :: Decidable f => p q -> (forall b. q b => f b) -> f a -> f (t a)",150,152,2025-11-07 11:47:08.932092,2025-11-07 11:47:08.932092 contravariant,unknown,Data.Functor.Contravariant.Divisible,Divisible,src/Data/Functor/Contravariant/Divisible.hs:159:26-34,"class Contravariant f => Divisible f where divide :: (a -> (b, c)) -> f b -> f c -> f a conquer :: f a",159,164,2025-11-07 11:47:08.932098,2025-11-07 11:47:08.932098 contravariant,unknown,Data.Functor.Contravariant.Divisible,Decidable,src/Data/Functor/Contravariant/Divisible.hs:391:22-30,"class Divisible f => Decidable f where lose :: (a -> Void) -> f a choose :: (a -> Either b c) -> f b -> f c -> f a",391,395,2025-11-07 11:47:08.932104,2025-11-07 11:47:08.932104 criterion,unknown,Criterion.IO.Printf,CritHPrintfType,Criterion/IO/Printf.hs:44:7-21,"class CritHPrintfType a where chPrintfImpl :: (Config -> Bool) -> PrintfCont -> a",44,45,2025-11-07 11:47:12.311629,2025-11-07 11:47:12.311629 crypto-api,unknown,Crypto.Classes.hs-boot.class_code.json,BlockCipher,Crypto/Classes.hs-boot:22:27-37,"class (Serialize k) => BlockCipher k where blockSize :: Tagged k BitLength "" The size of a single block; the smallest unit on which the cipher operates."" encryptBlock :: k -> B.ByteString -> B.ByteString "" encrypt data of size @n*blockSize@ where @n `elem` [0..]@ (ecb encryption)"" decryptBlock :: k -> B.ByteString -> B.ByteString "" decrypt data of size @n*blockSize@ where @n `elem` [0..]@ (ecb decryption)"" buildKey :: B.ByteString -> Maybe k "" smart constructor for keys from a bytestring."" keyLength :: Tagged k BitLength "" length of the cryptographic key"" ecb :: k -> B.ByteString -> B.ByteString ecb = modeEcb' unEcb :: k -> B.ByteString -> B.ByteString unEcb = modeUnEcb' cbc :: k -> IV k -> B.ByteString -> (B.ByteString, IV k) cbc = modeCbc' unCbc :: k -> IV k -> B.ByteString -> (B.ByteString, IV k) unCbc = modeUnCbc' ctr :: k -> IV k -> B.ByteString -> (B.ByteString, IV k) ctr = modeCtr' incIV unCtr :: k -> IV k -> B.ByteString -> (B.ByteString, IV k) unCtr = modeUnCtr' incIV ctrLazy :: k -> IV k -> L.ByteString -> (L.ByteString, IV k) ctrLazy = modeCtr incIV unCtrLazy :: k -> IV k -> L.ByteString -> (L.ByteString, IV k) unCtrLazy = modeUnCtr incIV cfb :: k -> IV k -> B.ByteString -> (B.ByteString, IV k) cfb = modeCfb' unCfb :: k -> IV k -> B.ByteString -> (B.ByteString, IV k) unCfb = modeUnCfb' ofb :: k -> IV k -> B.ByteString -> (B.ByteString, IV k) ofb = modeOfb' unOfb :: k -> IV k -> B.ByteString -> (B.ByteString, IV k) unOfb = modeUnOfb' cbcLazy :: k -> IV k -> L.ByteString -> (L.ByteString, IV k) cbcLazy = modeCbc unCbcLazy :: k -> IV k -> L.ByteString -> (L.ByteString, IV k) unCbcLazy = modeUnCbc sivLazy :: k -> k -> [L.ByteString] -> L.ByteString -> Maybe L.ByteString sivLazy = modeSiv unSivLazy :: k -> k -> [L.ByteString] -> L.ByteString -> Maybe L.ByteString unSivLazy = modeUnSiv siv :: k -> k -> [B.ByteString] -> B.ByteString -> Maybe B.ByteString siv = modeSiv' unSiv :: k -> k -> [B.ByteString] -> B.ByteString -> Maybe B.ByteString unSiv = modeUnSiv' ecbLazy :: k -> L.ByteString -> L.ByteString ecbLazy = modeEcb unEcbLazy :: k -> L.ByteString -> L.ByteString unEcbLazy = modeUnEcb cfbLazy :: k -> IV k -> L.ByteString -> (L.ByteString, IV k) cfbLazy = modeCfb unCfbLazy :: k -> IV k -> L.ByteString -> (L.ByteString, IV k) unCfbLazy = modeUnCfb ofbLazy :: k -> IV k -> L.ByteString -> (L.ByteString, IV k) ofbLazy = modeOfb unOfbLazy :: k -> IV k -> L.ByteString -> (L.ByteString, IV k) unOfbLazy = modeUnOfb",22,133,2025-11-07 11:47:14.570696,2025-11-07 11:47:14.570696 crypto-cipher-types,unknown,Crypto.Cipher.Types.BlockIO,BlockCipherIO,Crypto/Cipher/Types/BlockIO.hs:47:29-41,"class BlockCipher cipher => BlockCipherIO cipher where ecbEncryptMutable :: cipher -> PtrDest -> PtrSource -> BufferLength -> IO () ecbDecryptMutable :: cipher -> PtrDest -> PtrSource -> BufferLength -> IO () cbcEncryptMutable :: cipher -> PtrIV -> PtrDest -> PtrSource -> BufferLength -> IO () cbcEncryptMutable = cbcEncryptGeneric cbcDecryptMutable :: cipher -> PtrIV -> PtrDest -> PtrSource -> BufferLength -> IO () cbcDecryptMutable = cbcDecryptGeneric",47,68,2025-11-07 11:47:17.859491,2025-11-07 11:47:17.859491 crypton,unknown,Crypto.Random.Types,MonadRandom,Crypto/Random/Types.hs:20:18-28,"class Monad m => MonadRandom m where getRandomBytes :: ByteArray byteArray => Int -> m byteArray",20,21,2025-11-07 11:47:24.541824,2025-11-07 11:47:24.541824 crypto-api,unknown,Crypto.Random,CryptoRandomGen,Crypto/Random.hs:96:7-21,"class CryptoRandomGen g where newGen :: B.ByteString -> Either GenError g genSeedLength :: Tagged g ByteLength genBytes :: ByteLength -> g -> Either GenError (B.ByteString, g) reseedInfo :: g -> ReseedInfo reseedPeriod :: g -> ReseedInfo genBytesWithEntropy :: ByteLength -> B.ByteString -> g -> Either GenError (B.ByteString, g) genBytesWithEntropy len entropy g = let res = genBytes len g in case res of Left err -> Left err Right (bs, g') -> let entropy' = B.append entropy (B.replicate (len - B.length entropy) 0) in Right (zwp' entropy' bs, g') reseed :: B.ByteString -> g -> Either GenError g newGenIO :: IO g newGenIO = go 0 where go 1000 = throw $ GenErrorOther $ ""The generator instance requested by"" ++ ""newGenIO never instantiates (1000 tries). "" ++ ""It must be broken."" go i = do let p = Proxy getTypedGen :: (CryptoRandomGen g) => Proxy g -> IO (Either GenError g) getTypedGen pr = liftM newGen (getEntropy $ proxy genSeedLength pr) res <- getTypedGen p case res of Left _ -> go (i + 1) Right g -> return (g `asProxyTypeOf` p)",96,180,2025-11-07 11:47:14.570738,2025-11-07 11:47:14.570738 crypto-api,unknown,Crypto.Classes,Hash,Crypto/Classes.hs:84:8-11,"class (Serialize d, Eq d, Ord d) => Hash ctx d | d -> ctx, ctx -> d where outputLength :: Tagged d BitLength "" The size of the digest when encoded"" blockLength :: Tagged d BitLength "" The amount of data operated on in each round of the digest computation"" initialCtx :: ctx "" An initial context, provided with the first call to 'updateCtx'"" updateCtx :: ctx -> B.ByteString -> ctx "" Used to update a context, repeatedly called until all data is exhausted must operate correctly for imputs of @n*blockLength@ bytes for @n `elem` [0..]@"" finalize :: ctx -> B.ByteString -> d "" Finializing a context, plus any message data less than the block size, into a digest"" hash :: (Hash ctx d) => L.ByteString -> d hash msg = res where res = finalize ctx end ctx = foldl' updateCtx initialCtx blks (blks, end) = makeBlocks msg blockLen blockLen = (blockLength .::. res) `div` 8 hash' :: (Hash ctx d) => B.ByteString -> d hash' msg = res where res = finalize (updateCtx initialCtx top) end (top, end) = B.splitAt remlen msg remlen = B.length msg - (B.length msg `rem` bLen) bLen = blockLength `for` res `div` 8",83,108,2025-11-07 11:47:14.570760,2025-11-07 11:47:14.570760 crypto-api,unknown,Crypto.Classes,BlockCipher,Crypto/Classes.hs:151:25-35,"class (Serialize k) => BlockCipher k where blockSize :: Tagged k BitLength "" The size of a single block; the smallest unit on which the cipher operates."" encryptBlock :: k -> B.ByteString -> B.ByteString "" encrypt data of size @n*blockSize@ where @n `elem` [0..]@ (ecb encryption)"" decryptBlock :: k -> B.ByteString -> B.ByteString "" decrypt data of size @n*blockSize@ where @n `elem` [0..]@ (ecb decryption)"" buildKey :: B.ByteString -> Maybe k "" smart constructor for keys from a bytestring."" keyLength :: Tagged k BitLength "" length of the cryptographic key"" ecb :: k -> B.ByteString -> B.ByteString ecb = modeEcb' unEcb :: k -> B.ByteString -> B.ByteString unEcb = modeUnEcb' cbc :: k -> IV k -> B.ByteString -> (B.ByteString, IV k) cbc = modeCbc' unCbc :: k -> IV k -> B.ByteString -> (B.ByteString, IV k) unCbc = modeUnCbc' ctr :: k -> IV k -> B.ByteString -> (B.ByteString, IV k) ctr = modeCtr' incIV unCtr :: k -> IV k -> B.ByteString -> (B.ByteString, IV k) unCtr = modeUnCtr' incIV ctrLazy :: k -> IV k -> L.ByteString -> (L.ByteString, IV k) ctrLazy = modeCtr incIV unCtrLazy :: k -> IV k -> L.ByteString -> (L.ByteString, IV k) unCtrLazy = modeUnCtr incIV cfb :: k -> IV k -> B.ByteString -> (B.ByteString, IV k) cfb = modeCfb' unCfb :: k -> IV k -> B.ByteString -> (B.ByteString, IV k) unCfb = modeUnCfb' ofb :: k -> IV k -> B.ByteString -> (B.ByteString, IV k) ofb = modeOfb' unOfb :: k -> IV k -> B.ByteString -> (B.ByteString, IV k) unOfb = modeUnOfb' cbcLazy :: k -> IV k -> L.ByteString -> (L.ByteString, IV k) cbcLazy = modeCbc unCbcLazy :: k -> IV k -> L.ByteString -> (L.ByteString, IV k) unCbcLazy = modeUnCbc sivLazy :: k -> k -> [L.ByteString] -> L.ByteString -> Maybe L.ByteString sivLazy = modeSiv unSivLazy :: k -> k -> [L.ByteString] -> L.ByteString -> Maybe L.ByteString unSivLazy = modeUnSiv siv :: k -> k -> [B.ByteString] -> B.ByteString -> Maybe B.ByteString siv = modeSiv' unSiv :: k -> k -> [B.ByteString] -> B.ByteString -> Maybe B.ByteString unSiv = modeUnSiv' ecbLazy :: k -> L.ByteString -> L.ByteString ecbLazy = modeEcb unEcbLazy :: k -> L.ByteString -> L.ByteString unEcbLazy = modeUnEcb cfbLazy :: k -> IV k -> L.ByteString -> (L.ByteString, IV k) cfbLazy = modeCfb unCfbLazy :: k -> IV k -> L.ByteString -> (L.ByteString, IV k) unCfbLazy = modeUnCfb ofbLazy :: k -> IV k -> L.ByteString -> (L.ByteString, IV k) ofbLazy = modeOfb unOfbLazy :: k -> IV k -> L.ByteString -> (L.ByteString, IV k) unOfbLazy = modeUnOfb",151,262,2025-11-07 11:47:14.570779,2025-11-07 11:47:14.570779 crypto-api,unknown,Crypto.Classes,AsymCipher,Crypto/Classes.hs:485:7-16,"class AsymCipher p v | p -> v, v -> p where buildKeyPair :: CryptoRandomGen g => g -> BitLength -> Either GenError ((p, v), g) "" build a public/private key pair using the provided generator"" encryptAsym :: (CryptoRandomGen g) => g -> p -> B.ByteString -> Either GenError (B.ByteString, g) "" Asymetric encryption"" decryptAsym :: (CryptoRandomGen g) => g -> v -> B.ByteString -> Either GenError (B.ByteString, g) "" Asymetric decryption"" publicKeyLength :: p -> BitLength privateKeyLength :: v -> BitLength",485,490,2025-11-07 11:47:14.570871,2025-11-07 11:47:14.570871 crypto-api,unknown,Crypto.Classes,StreamCipher,Crypto/Classes.hs:508:24-35,"class (Serialize k) => StreamCipher k iv | k -> iv where buildStreamKey :: B.ByteString -> Maybe k encryptStream :: k -> iv -> B.ByteString -> (B.ByteString, iv) decryptStream :: k -> iv -> B.ByteString -> (B.ByteString, iv) streamKeyLength :: Tagged k BitLength",508,512,2025-11-07 11:47:14.570884,2025-11-07 11:47:14.570884 crypto-api,unknown,Crypto.Classes,Signing,Crypto/Classes.hs:538:37-43,"class (Serialize p, Serialize v) => Signing p v | p -> v, v -> p where sign :: CryptoRandomGen g => g -> v -> L.ByteString -> Either GenError (B.ByteString, g) verify :: p -> L.ByteString -> B.ByteString -> Bool buildSigningPair :: CryptoRandomGen g => g -> BitLength -> Either GenError ((p, v), g) signingKeyLength :: v -> BitLength verifyingKeyLength :: p -> BitLength",538,543,2025-11-07 11:47:14.570892,2025-11-07 11:47:14.570892 crypto-cipher-types,unknown,Crypto.Cipher.Types.Block,BlockCipher,Crypto/Cipher/Types/Block.hs:52:24-34,"class Cipher cipher => BlockCipher cipher where blockSize :: cipher -> Int ecbEncrypt :: cipher -> ByteString -> ByteString ecbDecrypt :: cipher -> ByteString -> ByteString cbcEncrypt :: cipher -> IV cipher -> ByteString -> ByteString cbcEncrypt = cbcEncryptGeneric cbcDecrypt :: cipher -> IV cipher -> ByteString -> ByteString cbcDecrypt = cbcDecryptGeneric cfbEncrypt :: cipher -> IV cipher -> ByteString -> ByteString cfbEncrypt = cfbEncryptGeneric cfbDecrypt :: cipher -> IV cipher -> ByteString -> ByteString cfbDecrypt = cfbDecryptGeneric ctrCombine :: cipher -> IV cipher -> ByteString -> ByteString ctrCombine = ctrCombineGeneric xtsEncrypt :: (cipher, cipher) -> IV cipher "" Usually represent the Data Unit (e.g. disk sector)"" -> DataUnitOffset "" Offset in the data unit in number of blocks"" -> ByteString "" Plaintext"" -> ByteString "" Ciphertext"" xtsEncrypt = xtsEncryptGeneric xtsDecrypt :: (cipher, cipher) -> IV cipher "" Usually represent the Data Unit (e.g. disk sector)"" -> DataUnitOffset "" Offset in the data unit in number of blocks"" -> ByteString "" Ciphertext"" -> ByteString "" Plaintext"" xtsDecrypt = xtsDecryptGeneric aeadInit :: Byteable iv => AEADMode -> cipher -> iv -> Maybe (AEAD cipher) aeadInit _ _ _ = Nothing",52,125,2025-11-07 11:47:17.859445,2025-11-07 11:47:17.859445 crypto-cipher-types,unknown,Crypto.Cipher.Types.Block,AEADModeImpl,Crypto/Cipher/Types/Block.hs:134:29-40,"class BlockCipher cipher => AEADModeImpl cipher state where aeadStateAppendHeader :: cipher -> state -> ByteString -> state aeadStateEncrypt :: cipher -> state -> ByteString -> (ByteString, state) aeadStateDecrypt :: cipher -> state -> ByteString -> (ByteString, state) aeadStateFinalize :: cipher -> state -> Int -> AuthTag",134,138,2025-11-07 11:47:17.859469,2025-11-07 11:47:17.859469 crypto-cipher-types,unknown,Crypto.Cipher.Types.Stream,StreamCipher,Crypto/Cipher/Types/Stream.hs:18:24-35,"class Cipher cipher => StreamCipher cipher where streamCombine :: cipher -> ByteString -> (ByteString, cipher)",18,20,2025-11-07 11:47:17.859479,2025-11-07 11:47:17.859479 crypto-cipher-types,unknown,Crypto.Cipher.Types.Base,Cipher,Crypto/Cipher/Types/Base.hs:76:7-12,"class Cipher cipher where cipherInit :: Key cipher -> cipher cipherName :: cipher -> String cipherKeySize :: cipher -> KeySizeSpecifier",76,83,2025-11-07 11:47:17.859485,2025-11-07 11:47:17.859485 cryptohash,unknown,Crypto.Hash,HashAlgorithm,Crypto/Hash.hs:107:7-19,"class HashAlgorithm a where hashBlockSize :: Context a -> Int hashInit :: Context a hashUpdates :: Context a -> [ByteString] -> Context a hashFinalize :: Context a -> Digest a digestFromByteString :: ByteString -> Maybe (Digest a)",107,122,2025-11-07 11:47:20.139649,2025-11-07 11:47:20.139649 crypton,unknown,Crypto.ECC,EllipticCurve,Crypto/ECC.hs:59:7-19,"class EllipticCurve curve where type Point curve :: Type type Scalar curve :: Type curveGenerateScalar :: MonadRandom randomly => proxy curve -> randomly (Scalar curve) curveGenerateKeyPair :: MonadRandom randomly => proxy curve -> randomly (KeyPair curve) curveSizeBits :: proxy curve -> Int encodePoint :: ByteArray bs => proxy curve -> Point curve -> bs decodePoint :: ByteArray bs => proxy curve -> bs -> CryptoFailable (Point curve)",59,80,2025-11-07 11:47:24.541674,2025-11-07 11:47:24.541674 crypton,unknown,Crypto.ECC,EllipticCurveDH,Crypto/ECC.hs:82:30-44,"class EllipticCurve curve => EllipticCurveDH curve where ecdhRaw :: proxy curve -> Scalar curve -> Point curve -> SharedSecret ecdhRaw prx s = throwCryptoError . ecdh prx s ecdh :: proxy curve -> Scalar curve -> Point curve -> CryptoFailable SharedSecret",82,103,2025-11-07 11:47:24.541693,2025-11-07 11:47:24.541693 crypton,unknown,Crypto.ECC,EllipticCurveArith,Crypto/ECC.hs:105:50-67,"class (EllipticCurve curve, Eq (Point curve)) => EllipticCurveArith curve where pointAdd :: proxy curve -> Point curve -> Point curve -> Point curve pointNegate :: proxy curve -> Point curve -> Point curve pointSmul :: proxy curve -> Scalar curve -> Point curve -> Point curve",105,113,2025-11-07 11:47:24.541702,2025-11-07 11:47:24.541702 crypton,unknown,Crypto.ECC,EllipticCurveBasepointArith,Crypto/ECC.hs:118:56-82,"class (EllipticCurveArith curve, Eq (Scalar curve)) => EllipticCurveBasepointArith curve where curveOrderBits :: proxy curve -> Int pointBaseSmul :: proxy curve -> Scalar curve -> Point curve pointsSmulVarTime :: proxy curve -> Scalar curve -> Scalar curve -> Point curve -> Point curve pointsSmulVarTime prx s1 s2 p = pointAdd prx (pointBaseSmul prx s1) (pointSmul prx s2 p) encodeScalar :: ByteArray bs => proxy curve -> Scalar curve -> bs decodeScalar :: ByteArray bs => proxy curve -> bs -> CryptoFailable (Scalar curve) scalarToInteger :: proxy curve -> Scalar curve -> Integer scalarFromInteger :: proxy curve -> Integer -> CryptoFailable (Scalar curve) scalarAdd :: proxy curve -> Scalar curve -> Scalar curve -> Scalar curve scalarMul :: proxy curve -> Scalar curve -> Scalar curve -> Scalar curve",118,145,2025-11-07 11:47:24.541710,2025-11-07 11:47:24.541710 crypton,unknown,Crypto.Hash.Types,HashAlgorithm,Crypto/Hash/Types.hs:40:7-19,"class HashAlgorithm a where type HashBlockSize a :: Nat type HashDigestSize a :: Nat type HashInternalContextSize a :: Nat hashBlockSize :: a -> Int hashDigestSize :: a -> Int hashInternalContextSize :: a -> Int hashInternalInit :: Ptr (Context a) -> IO () hashInternalUpdate :: Ptr (Context a) -> Ptr Word8 -> Word32 -> IO () hashInternalFinalize :: Ptr (Context a) -> Ptr (Digest a) -> IO ()",40,61,2025-11-07 11:47:24.541727,2025-11-07 11:47:24.541727 crypton,unknown,Crypto.Hash.Types,HashAlgorithmPrefix,Crypto/Hash/Types.hs:64:26-44,"class HashAlgorithm a => HashAlgorithmPrefix a where hashInternalFinalizePrefix :: Ptr (Context a) -> Ptr Word8 -> Word32 -> Word32 -> Ptr (Digest a) -> IO ()",64,72,2025-11-07 11:47:24.541736,2025-11-07 11:47:24.541736 crypton,unknown,Crypto.Hash.SHAKE,HashSHAKE,Crypto/Hash/SHAKE.hs:35:26-34,"class HashAlgorithm a => HashSHAKE a where cshakeInternalFinalize :: Ptr (Context a) -> Ptr (Digest a) -> IO () cshakeOutputLength :: a -> Int",35,39,2025-11-07 11:47:24.541743,2025-11-07 11:47:24.541743 crypton,unknown,Crypto.PubKey.ECDSA,EllipticCurveECDSA,Crypto/PubKey/ECDSA.hs:87:44-61,"class EllipticCurveBasepointArith curve => EllipticCurveECDSA curve where scalarIsValid :: proxy curve -> Scalar curve -> Bool scalarIsZero :: proxy curve -> Scalar curve -> Bool scalarIsZero prx s = s == throwCryptoError (scalarFromInteger prx 0) scalarInv :: proxy curve -> Scalar curve -> Maybe (Scalar curve) pointX :: proxy curve -> Point curve -> Maybe (Scalar curve)",87,99,2025-11-07 11:47:24.541750,2025-11-07 11:47:24.541750 crypton,unknown,Crypto.PubKey.EdDSA,EllipticCurveEdDSA,Crypto/PubKey/EdDSA.hs:90:12-29,"class (EllipticCurveBasepointArith curve, KnownNat (CurveDigestSize curve)) => EllipticCurveEdDSA curve where type CurveDigestSize curve :: Nat secretKeySize :: proxy curve -> Int hashWithDom :: (HashAlgorithm hash, ByteArrayAccess ctx, ByteArrayAccess msg) => proxy curve -> hash -> Bool -> ctx -> Builder -> msg -> Bytes pointPublic :: proxy curve -> Point curve -> PublicKey curve hash publicPoint :: proxy curve -> PublicKey curve hash -> CryptoFailable (Point curve) encodeScalarLE :: ByteArray bs => proxy curve -> Scalar curve -> bs decodeScalarLE :: ByteArrayAccess bs => proxy curve -> bs -> CryptoFailable (Scalar curve) scheduleSecret :: (HashAlgorithm hash, HashDigestSize hash ~ CurveDigestSize curve) => proxy curve -> hash -> SecretKey curve -> (Scalar curve, View Bytes)",88,115,2025-11-07 11:47:24.541761,2025-11-07 11:47:24.541761 crypton,unknown,Crypto.PubKey.RSA.PKCS15,HashAlgorithmASN1,Crypto/PubKey/RSA/PKCS15.hs:42:32-48,"class HashAlgorithm hashAlg => HashAlgorithmASN1 hashAlg where hashDigestASN1 :: ByteArray out => Digest hashAlg -> out",42,44,2025-11-07 11:47:24.541778,2025-11-07 11:47:24.541778 crypton,unknown,Crypto.Cipher.Types.Block,BlockCipher,Crypto/Cipher/Types/Block.hs:69:24-34,"class Cipher cipher => BlockCipher cipher where blockSize :: cipher -> Int ecbEncrypt :: ByteArray ba => cipher -> ba -> ba ecbDecrypt :: ByteArray ba => cipher -> ba -> ba cbcEncrypt :: ByteArray ba => cipher -> IV cipher -> ba -> ba cbcEncrypt = cbcEncryptGeneric cbcDecrypt :: ByteArray ba => cipher -> IV cipher -> ba -> ba cbcDecrypt = cbcDecryptGeneric cfbEncrypt :: ByteArray ba => cipher -> IV cipher -> ba -> ba cfbEncrypt = cfbEncryptGeneric cfbDecrypt :: ByteArray ba => cipher -> IV cipher -> ba -> ba cfbDecrypt = cfbDecryptGeneric ctrCombine :: ByteArray ba => cipher -> IV cipher -> ba -> ba ctrCombine = ctrCombineGeneric aeadInit :: ByteArrayAccess iv => AEADMode -> cipher -> iv -> CryptoFailable (AEAD cipher) aeadInit _ _ _ = CryptoFailed CryptoError_AEADModeNotSupported",69,120,2025-11-07 11:47:24.541784,2025-11-07 11:47:24.541784 crypton,unknown,Crypto.Cipher.Types.Block,BlockCipher128,Crypto/Cipher/Types/Block.hs:123:29-42,"class BlockCipher cipher => BlockCipher128 cipher where xtsEncrypt :: ByteArray ba => (cipher, cipher) -> IV cipher "" Usually represent the Data Unit (e.g. disk sector)"" -> DataUnitOffset "" Offset in the data unit in number of blocks"" -> ba "" Plaintext"" -> ba "" Ciphertext"" xtsEncrypt = xtsEncryptGeneric xtsDecrypt :: ByteArray ba => (cipher, cipher) -> IV cipher "" Usually represent the Data Unit (e.g. disk sector)"" -> DataUnitOffset "" Offset in the data unit in number of blocks"" -> ba "" Ciphertext"" -> ba "" Plaintext"" xtsDecrypt = xtsDecryptGeneric",123,146,2025-11-07 11:47:24.541798,2025-11-07 11:47:24.541798 crypton,unknown,Crypto.Cipher.Types.Stream,StreamCipher,Crypto/Cipher/Types/Stream.hs:18:24-35,"class Cipher cipher => StreamCipher cipher where streamCombine :: ByteArray ba => cipher -> ba -> (ba, cipher)",18,20,2025-11-07 11:47:24.541810,2025-11-07 11:47:24.541810 crypton,unknown,Crypto.Cipher.Types.Base,Cipher,Crypto/Cipher/Types/Base.hs:58:7-12,"class Cipher cipher where cipherInit :: ByteArray key => key -> CryptoFailable cipher cipherName :: cipher -> String cipherKeySize :: cipher -> KeySizeSpecifier",58,65,2025-11-07 11:47:24.541817,2025-11-07 11:47:24.541817 crypton,unknown,Crypto.Random.Types,DRG,Crypto/Random/Types.hs:24:7-9,"class DRG gen where randomBytesGenerate :: ByteArray byteArray => Int -> gen -> (byteArray, gen)",24,26,2025-11-07 11:47:24.541829,2025-11-07 11:47:24.541829 crypton,unknown,Crypto.Random.Entropy.Source,EntropySource,Crypto/Random/Entropy/Source.hs:15:7-19,"class EntropySource a where entropyOpen :: IO (Maybe a) entropyGather :: a -> Ptr Word8 -> Int -> IO Int entropyClose :: a -> IO ()",15,22,2025-11-07 11:47:24.541884,2025-11-07 11:47:24.541884 crypton,unknown,Crypto.ECC.Simple.Types,Curve,Crypto/ECC/Simple/Types.hs:64:7-11,"class Curve curve where curveParameters :: proxy curve -> CurveParameters curve curveType :: proxy curve -> CurveType",64,66,2025-11-07 11:47:24.541891,2025-11-07 11:47:24.541891 cryptonite,unknown,Crypto.ECC,EllipticCurve,Crypto/ECC.hs:59:7-19,"class EllipticCurve curve where type Point curve :: Type type Scalar curve :: Type curveGenerateScalar :: MonadRandom randomly => proxy curve -> randomly (Scalar curve) curveGenerateKeyPair :: MonadRandom randomly => proxy curve -> randomly (KeyPair curve) curveSizeBits :: proxy curve -> Int encodePoint :: ByteArray bs => proxy curve -> Point curve -> bs decodePoint :: ByteArray bs => proxy curve -> bs -> CryptoFailable (Point curve)",59,80,2025-11-07 11:47:27.238904,2025-11-07 11:47:27.238904 cryptonite,unknown,Crypto.ECC,EllipticCurveDH,Crypto/ECC.hs:82:30-44,"class EllipticCurve curve => EllipticCurveDH curve where ecdhRaw :: proxy curve -> Scalar curve -> Point curve -> SharedSecret ecdhRaw prx s = throwCryptoError . ecdh prx s ecdh :: proxy curve -> Scalar curve -> Point curve -> CryptoFailable SharedSecret",82,103,2025-11-07 11:47:27.238925,2025-11-07 11:47:27.238925 cryptonite,unknown,Crypto.ECC,EllipticCurveArith,Crypto/ECC.hs:105:50-67,"class (EllipticCurve curve, Eq (Point curve)) => EllipticCurveArith curve where pointAdd :: proxy curve -> Point curve -> Point curve -> Point curve pointNegate :: proxy curve -> Point curve -> Point curve pointSmul :: proxy curve -> Scalar curve -> Point curve -> Point curve",105,113,2025-11-07 11:47:27.238934,2025-11-07 11:47:27.238934 cryptonite,unknown,Crypto.ECC,EllipticCurveBasepointArith,Crypto/ECC.hs:118:56-82,"class (EllipticCurveArith curve, Eq (Scalar curve)) => EllipticCurveBasepointArith curve where curveOrderBits :: proxy curve -> Int pointBaseSmul :: proxy curve -> Scalar curve -> Point curve pointsSmulVarTime :: proxy curve -> Scalar curve -> Scalar curve -> Point curve -> Point curve pointsSmulVarTime prx s1 s2 p = pointAdd prx (pointBaseSmul prx s1) (pointSmul prx s2 p) encodeScalar :: ByteArray bs => proxy curve -> Scalar curve -> bs decodeScalar :: ByteArray bs => proxy curve -> bs -> CryptoFailable (Scalar curve) scalarToInteger :: proxy curve -> Scalar curve -> Integer scalarFromInteger :: proxy curve -> Integer -> CryptoFailable (Scalar curve) scalarAdd :: proxy curve -> Scalar curve -> Scalar curve -> Scalar curve scalarMul :: proxy curve -> Scalar curve -> Scalar curve -> Scalar curve",118,145,2025-11-07 11:47:27.238944,2025-11-07 11:47:27.238944 cryptonite,unknown,Crypto.Hash.Types,HashAlgorithm,Crypto/Hash/Types.hs:40:7-19,"class HashAlgorithm a where type HashBlockSize a :: Nat type HashDigestSize a :: Nat type HashInternalContextSize a :: Nat hashBlockSize :: a -> Int hashDigestSize :: a -> Int hashInternalContextSize :: a -> Int hashInternalInit :: Ptr (Context a) -> IO () hashInternalUpdate :: Ptr (Context a) -> Ptr Word8 -> Word32 -> IO () hashInternalFinalize :: Ptr (Context a) -> Ptr (Digest a) -> IO ()",40,61,2025-11-07 11:47:27.238960,2025-11-07 11:47:27.238960 cryptonite,unknown,Crypto.Hash.Types,HashAlgorithmPrefix,Crypto/Hash/Types.hs:64:26-44,"class HashAlgorithm a => HashAlgorithmPrefix a where hashInternalFinalizePrefix :: Ptr (Context a) -> Ptr Word8 -> Word32 -> Word32 -> Ptr (Digest a) -> IO ()",64,72,2025-11-07 11:47:27.238969,2025-11-07 11:47:27.238969 cryptonite,unknown,Crypto.Hash.SHAKE,HashSHAKE,Crypto/Hash/SHAKE.hs:35:26-34,"class HashAlgorithm a => HashSHAKE a where cshakeInternalFinalize :: Ptr (Context a) -> Ptr (Digest a) -> IO () cshakeOutputLength :: a -> Int",35,39,2025-11-07 11:47:27.238977,2025-11-07 11:47:27.238977 cryptonite,unknown,Crypto.PubKey.ECDSA,EllipticCurveECDSA,Crypto/PubKey/ECDSA.hs:87:44-61,"class EllipticCurveBasepointArith curve => EllipticCurveECDSA curve where scalarIsValid :: proxy curve -> Scalar curve -> Bool scalarIsZero :: proxy curve -> Scalar curve -> Bool scalarIsZero prx s = s == throwCryptoError (scalarFromInteger prx 0) scalarInv :: proxy curve -> Scalar curve -> Maybe (Scalar curve) pointX :: proxy curve -> Point curve -> Maybe (Scalar curve)",87,99,2025-11-07 11:47:27.238984,2025-11-07 11:47:27.238984 cryptonite,unknown,Crypto.PubKey.EdDSA,EllipticCurveEdDSA,Crypto/PubKey/EdDSA.hs:90:12-29,"class (EllipticCurveBasepointArith curve, KnownNat (CurveDigestSize curve)) => EllipticCurveEdDSA curve where type CurveDigestSize curve :: Nat secretKeySize :: proxy curve -> Int hashWithDom :: (HashAlgorithm hash, ByteArrayAccess ctx, ByteArrayAccess msg) => proxy curve -> hash -> Bool -> ctx -> Builder -> msg -> Bytes pointPublic :: proxy curve -> Point curve -> PublicKey curve hash publicPoint :: proxy curve -> PublicKey curve hash -> CryptoFailable (Point curve) encodeScalarLE :: ByteArray bs => proxy curve -> Scalar curve -> bs decodeScalarLE :: ByteArrayAccess bs => proxy curve -> bs -> CryptoFailable (Scalar curve) scheduleSecret :: (HashAlgorithm hash, HashDigestSize hash ~ CurveDigestSize curve) => proxy curve -> hash -> SecretKey curve -> (Scalar curve, View Bytes)",88,115,2025-11-07 11:47:27.238993,2025-11-07 11:47:27.238993 cryptonite,unknown,Crypto.PubKey.RSA.PKCS15,HashAlgorithmASN1,Crypto/PubKey/RSA/PKCS15.hs:42:32-48,"class HashAlgorithm hashAlg => HashAlgorithmASN1 hashAlg where hashDigestASN1 :: ByteArray out => Digest hashAlg -> out",42,44,2025-11-07 11:47:27.239007,2025-11-07 11:47:27.239007 cryptonite,unknown,Crypto.Cipher.Types.Block,BlockCipher,Crypto/Cipher/Types/Block.hs:69:24-34,"class Cipher cipher => BlockCipher cipher where blockSize :: cipher -> Int ecbEncrypt :: ByteArray ba => cipher -> ba -> ba ecbDecrypt :: ByteArray ba => cipher -> ba -> ba cbcEncrypt :: ByteArray ba => cipher -> IV cipher -> ba -> ba cbcEncrypt = cbcEncryptGeneric cbcDecrypt :: ByteArray ba => cipher -> IV cipher -> ba -> ba cbcDecrypt = cbcDecryptGeneric cfbEncrypt :: ByteArray ba => cipher -> IV cipher -> ba -> ba cfbEncrypt = cfbEncryptGeneric cfbDecrypt :: ByteArray ba => cipher -> IV cipher -> ba -> ba cfbDecrypt = cfbDecryptGeneric ctrCombine :: ByteArray ba => cipher -> IV cipher -> ba -> ba ctrCombine = ctrCombineGeneric aeadInit :: ByteArrayAccess iv => AEADMode -> cipher -> iv -> CryptoFailable (AEAD cipher) aeadInit _ _ _ = CryptoFailed CryptoError_AEADModeNotSupported",69,120,2025-11-07 11:47:27.239013,2025-11-07 11:47:27.239013 cryptonite,unknown,Crypto.Cipher.Types.Block,BlockCipher128,Crypto/Cipher/Types/Block.hs:123:29-42,"class BlockCipher cipher => BlockCipher128 cipher where xtsEncrypt :: ByteArray ba => (cipher, cipher) -> IV cipher "" Usually represent the Data Unit (e.g. disk sector)"" -> DataUnitOffset "" Offset in the data unit in number of blocks"" -> ba "" Plaintext"" -> ba "" Ciphertext"" xtsEncrypt = xtsEncryptGeneric xtsDecrypt :: ByteArray ba => (cipher, cipher) -> IV cipher "" Usually represent the Data Unit (e.g. disk sector)"" -> DataUnitOffset "" Offset in the data unit in number of blocks"" -> ba "" Ciphertext"" -> ba "" Plaintext"" xtsDecrypt = xtsDecryptGeneric",123,146,2025-11-07 11:47:27.239027,2025-11-07 11:47:27.239027 currency,unknown,Currency,MinorUnits,Currency.hs:533:7-16,"class MinorUnits a where minorUnits :: a -> Maybe Int",533,536,2025-11-07 11:47:32.664295,2025-11-07 11:47:32.664295 cryptonite,unknown,Crypto.Cipher.Types.Stream,StreamCipher,Crypto/Cipher/Types/Stream.hs:18:24-35,"class Cipher cipher => StreamCipher cipher where streamCombine :: ByteArray ba => cipher -> ba -> (ba, cipher)",18,20,2025-11-07 11:47:27.239039,2025-11-07 11:47:27.239039 cryptonite,unknown,Crypto.Cipher.Types.Base,Cipher,Crypto/Cipher/Types/Base.hs:58:7-12,"class Cipher cipher where cipherInit :: ByteArray key => key -> CryptoFailable cipher cipherName :: cipher -> String cipherKeySize :: cipher -> KeySizeSpecifier",58,65,2025-11-07 11:47:27.239045,2025-11-07 11:47:27.239045 cryptonite,unknown,Crypto.Random.Types,MonadRandom,Crypto/Random/Types.hs:20:18-28,"class Monad m => MonadRandom m where getRandomBytes :: ByteArray byteArray => Int -> m byteArray",20,21,2025-11-07 11:47:27.239052,2025-11-07 11:47:27.239052 cryptonite,unknown,Crypto.Random.Types,DRG,Crypto/Random/Types.hs:24:7-9,"class DRG gen where randomBytesGenerate :: ByteArray byteArray => Int -> gen -> (byteArray, gen)",24,26,2025-11-07 11:47:27.239127,2025-11-07 11:47:27.239127 cryptonite,unknown,Crypto.Random.Entropy.Source,EntropySource,Crypto/Random/Entropy/Source.hs:15:7-19,"class EntropySource a where entropyOpen :: IO (Maybe a) entropyGather :: a -> Ptr Word8 -> Int -> IO Int entropyClose :: a -> IO ()",15,22,2025-11-07 11:47:27.239134,2025-11-07 11:47:27.239134 cryptonite,unknown,Crypto.ECC.Simple.Types,Curve,Crypto/ECC/Simple/Types.hs:64:7-11,"class Curve curve where curveParameters :: proxy curve -> CurveParameters curve curveType :: proxy curve -> CurveType",64,66,2025-11-07 11:47:27.239141,2025-11-07 11:47:27.239141 cryptostore,unknown,Crypto.Store.X509,SignedObject,src/Crypto/Store/X509.hs:53:39-50,"class (ASN1Object a, Eq a, Show a) => SignedObject a where signedObjectName :: proxy a -> String otherObjectNames :: proxy a -> [String]",53,55,2025-11-07 11:47:30.341972,2025-11-07 11:47:30.341972 cryptostore,unknown,Crypto.Store.PKCS12,BagInfo,src/Crypto/Store/PKCS12.hs:316:7-13,"class BagInfo info where type BagType info bagName :: info -> String bagType :: info -> BagType info valueASN1S :: ASN1Elem e => info -> ASN1Stream e parseValue :: Monoid e => BagType info -> ParseASN1 e info",316,321,2025-11-07 11:47:30.341987,2025-11-07 11:47:30.341987 cryptostore,unknown,Crypto.Store.ASN1.Generate,ASN1Elem,src/Crypto/Store/ASN1/Generate.hs:44:7-14,"class ASN1Elem e where asn1Container :: ASN1ConstructionType -> ASN1Stream e -> ASN1Stream e gMany :: [ASN1] -> ASN1Stream e gOne :: ASN1 -> ASN1Stream e",44,50,2025-11-07 11:47:30.341996,2025-11-07 11:47:30.341996 cryptostore,unknown,Crypto.Store.CMS.Util,Enumerable,src/Crypto/Store/CMS/Util.hs:86:7-16,"class Enumerable a where values :: [a]",86,88,2025-11-07 11:47:30.342003,2025-11-07 11:47:30.342003 cryptostore,unknown,Crypto.Store.CMS.Util,ProduceASN1Object,src/Crypto/Store/CMS/Util.hs:109:7-23,"class ProduceASN1Object e obj where asn1s :: obj -> ASN1Stream e",109,110,2025-11-07 11:47:30.342008,2025-11-07 11:47:30.342008 cryptostore,unknown,Crypto.Store.CMS.Util,ParseASN1Object,src/Crypto/Store/CMS/Util.hs:131:19-33,"class Monoid e => ParseASN1Object e obj where parse :: ParseASN1 e obj",131,132,2025-11-07 11:47:30.342014,2025-11-07 11:47:30.342014 cryptostore,unknown,Crypto.Store.CMS.Util,AlgorithmId,src/Crypto/Store/CMS/Util.hs:187:7-17,"class AlgorithmId param where type AlgorithmType param algorithmName :: param -> String algorithmType :: param -> AlgorithmType param parameterASN1S :: ASN1Elem e => param -> ASN1Stream e parseParameter :: Monoid e => AlgorithmType param -> ParseASN1 e param",187,192,2025-11-07 11:47:30.342019,2025-11-07 11:47:30.342019 cryptostore,unknown,Crypto.Store.CMS.Algorithms,HasStrength,src/Crypto/Store/CMS/Algorithms.hs:335:7-17,"class HasStrength params where getSecurityBits :: params -> Int",335,341,2025-11-07 11:47:30.342027,2025-11-07 11:47:30.342027 cryptostore,unknown,Crypto.Store.CMS.Algorithms,HasKeySize,src/Crypto/Store/CMS/Algorithms.hs:354:7-16,"class HasKeySize params where getKeySizeSpecifier :: params -> KeySizeSpecifier",354,356,2025-11-07 11:47:30.342032,2025-11-07 11:47:30.342032 cryptostore,unknown,Crypto.Store.CMS.Info,Encapsulates,src/Crypto/Store/CMS/Info.hs:127:7-18,"class Encapsulates struct where lens :: Functor f => (a -> f b) -> struct a -> f (struct b) toCI :: struct (Encap ByteString) -> ContentInfo",127,129,2025-11-07 11:47:30.342038,2025-11-07 11:47:30.342038 cryptostore,unknown,Crypto.Store.CMS.OriginatorInfo,HasChoiceOther,src/Crypto/Store/CMS/OriginatorInfo.hs:35:7-20,"class HasChoiceOther a where hasChoiceOther :: a -> Bool",35,37,2025-11-07 11:47:30.342045,2025-11-07 11:47:30.342045 data-default-class,unknown,Data.Default.Class,GDefault,Data/Default/Class.hs:63:7-14,"class GDefault f where gdef :: f a",63,64,2025-11-07 11:47:39.199481,2025-11-07 11:47:39.199481 data-default-class,unknown,Data.Default.Class,Default,Data/Default/Class.hs:80:7-13,"class Default a where def :: a default def :: (Generic a, GDefault (Rep a)) => a def = to gdef",80,86,2025-11-07 11:47:39.199490,2025-11-07 11:47:39.199490 deepseq,unknown,Control.DeepSeq.Generics,GNFData,Control/DeepSeq/Generics.hs:85:7-13,"class GNFData f where grnf_ :: f a -> ()",85,86,2025-11-07 11:47:47.864885,2025-11-07 11:47:47.864885 deepseq,unknown,Control.DeepSeq.Generics,GNFDataV1,Control/DeepSeq/Generics.hs:140:7-15,"class GNFDataV1 f where grnfV1_ :: f a -> ()",140,141,2025-11-07 11:47:47.864897,2025-11-07 11:47:47.864897 digest,unknown,Data.Digest.CRC32,CRC32,Data/Digest/CRC32.hsc:30:7-11,"class CRC32 a where crc32 :: a -> Word32 crc32 = crc32Update 0 crc32Update :: Word32 -> a -> Word32",30,38,2025-11-07 11:47:52.221474,2025-11-07 11:47:52.221474 digest,unknown,Data.Digest.Adler32,Adler32,Data/Digest/Adler32.hsc:30:7-13,"class Adler32 a where adler32 :: a -> Word32 adler32 = adler32Update 1 adler32Update :: Word32 -> a -> Word32",30,38,2025-11-07 11:47:52.221483,2025-11-07 11:47:52.221483 direct-sqlite,unknown,Database.SQLite3.Bindings.Types,FFIType,Database/SQLite3/Bindings/Types.hsc:590:7-13,"class FFIType public ffi | public -> ffi, ffi -> public where toFFI :: public -> ffi fromFFI :: ffi -> public",590,592,2025-11-07 11:47:53.373715,2025-11-07 11:47:53.373715 distributive,unknown,Data.Distributive,Distributive,src/Data/Distributive.hs:81:20-31,"class Functor g => Distributive g where {-# MINIMAL distribute | collect #-} distribute :: Functor f => f (g a) -> g (f a) distribute = collect id collect :: Functor f => (a -> g b) -> f a -> g (f b) collect f = distribute . fmap f distributeM :: Monad m => m (g a) -> g (m a) distributeM = fmap unwrapMonad . distribute . WrapMonad collectM :: Monad m => (a -> g b) -> m a -> g (m b) collectM f = distributeM . liftM f",81,120,2025-11-07 11:47:54.481142,2025-11-07 11:47:54.481142 distributive,unknown,Data.Distributive.Generic,GDistributive,src/Data/Distributive/Generic.hs:51:7-19,"class GDistributive g where gcollect :: Functor f => (a -> g b) -> f a -> g (f b)",51,52,2025-11-07 11:47:54.481155,2025-11-07 11:47:54.481155 erf,unknown,Data.Number.Erf,Erf,src/Data/Number/Erf.hs:16:23-25,"class (Floating a) => Erf a where erf :: a -> a erfc :: a -> a ""@erfc x = 1 - erf x@"" erfcx :: a -> a ""@erfcx x = exp (x*x) * erfc x@"" normcdf :: a -> a ""@normcdf x = erfc(-x / sqrt 2) / 2@"" erf x = 1 - erfc x erfc x = 2 * normcdf (- x * sqrt 2) erfcx x = exp (x * x) * erfc x normcdf x = erfc (- x / sqrt 2) / 2",16,26,2025-11-07 11:48:28.249565,2025-11-07 11:48:28.249565 erf,unknown,Data.Number.Erf,InvErf,src/Data/Number/Erf.hs:39:23-28,"class (Floating a) => InvErf a where inverf :: a -> a inverfc :: a -> a invnormcdf :: a -> a inverf p = inverfc (1 - p) inverfc p = - invnormcdf (p / 2) / sqrt 2",39,46,2025-11-07 11:48:28.249580,2025-11-07 11:48:28.249580 fast-logger,unknown,System.Log.FastLogger.LogStr,ToLogStr,System/Log/FastLogger/LogStr.hs:69:7-14,"class ToLogStr msg where toLogStr :: msg -> LogStr",69,70,2025-11-07 11:48:34.121630,2025-11-07 11:48:34.121630 fingertree,unknown,Data.FingerTree,Measured,Data/FingerTree.hs:166:21-28,"class (Monoid v) => Measured v a | a -> v where measure :: a -> v",166,167,2025-11-07 11:48:43.593692,2025-11-07 11:48:43.593692 double-conversion,unknown,Data.Double.Conversion.Convertable,Convertable,Data/Double/Conversion/Convertable.hs:64:36-46,"class (RealFloat a, IsString b) => Convertable a b where toExponential :: Int -> a -> b default toExponential :: (b ~ BB.Builder) => Int -> a -> b toExponential ndigits num = primBounded (CBB.convert ""toExponential"" len $ \ val mba -> c_ToExponential val mba (fromIntegral ndigits)) (realToFrac num :: Double) where len = c_ToExponentialLength {-# NOINLINE len #-} toPrecision :: Int -> a -> b default toPrecision :: (b ~ BB.Builder) => Int -> a -> b toPrecision ndigits num = primBounded (CBB.convert ""toPrecision"" len $ \ val mba -> c_ToPrecision val mba (fromIntegral ndigits)) (realToFrac num :: Double) where len = c_ToPrecisionLength {-# NOINLINE len #-} toFixed :: Int -> a -> b default toFixed :: (b ~ BB.Builder) => Int -> a -> b toFixed ndigits num = primBounded (CBB.convert ""toFixed"" len $ \ val mba -> c_ToFixed val mba (fromIntegral ndigits)) (realToFrac num :: Double) where len = c_ToFixedLength {-# NOINLINE len #-} toShortest :: a -> b default toShortest :: (b ~ BB.Builder) => a -> b toShortest num = primBounded (CBB.convert ""toShortest"" len c_ToShortest) (realToFrac num :: Double) where len = c_ToShortestLength {-# NOINLINE len #-}",64,90,2025-11-07 11:48:19.087472,2025-11-07 11:48:19.087472 fast-logger,unknown,System.Log.FastLogger.Write,Loggers,System/Log/FastLogger/Write.hs:42:7-13,"class Loggers a where stopLoggers :: a -> IO () pushLog :: a -> LogStr -> IO () flushAllLog :: a -> IO ()",42,45,2025-11-07 11:48:34.121641,2025-11-07 11:48:34.121641 fdep,unknown,Main,Container,test/Main.hs:51:7-15,"class Container c where type ContainerElem c empty :: c insert :: ContainerElem c -> c -> c",51,54,2025-11-07 11:48:36.603908,2025-11-07 11:48:36.603908 fdep,unknown,Main,MonadState,test/Main.hs:62:18-27,"class Monad m => MonadState s m | m -> s where get :: m s put :: s -> m ()",62,64,2025-11-07 11:48:36.603924,2025-11-07 11:48:36.603924 fdep,unknown,Main,Sizeable,test/Main.hs:157:7-14,"class Sizeable a where size :: a -> Int",157,158,2025-11-07 11:48:36.603930,2025-11-07 11:48:36.603930 filemanip,unknown,Manip,Streamable,System/FilePath/Manip.hs:39:7-16,"class Streamable a where readAll :: Handle -> IO a writeAll :: Handle -> a -> IO ()",39,43,2025-11-07 11:48:40.081905,2025-11-07 11:48:40.081905 filtrable,unknown,Data.Filtrable,Filtrable,Data/Filtrable.hs:52:20-28,"class Functor f => Filtrable f where {-# MINIMAL mapMaybe | catMaybes #-} mapMaybe :: (a -> Maybe b) -> f a -> f b mapMaybe f = catMaybes . fmap f catMaybes :: f (Maybe a) -> f a catMaybes = mapMaybe id filter :: (a -> Bool) -> f a -> f a filter f = mapMaybe ((<$) <*> guard . f) mapMaybeA :: (Traversable f, Applicative p) => (a -> p (Maybe b)) -> f a -> p (f b) mapMaybeA f xs = catMaybes <$> traverse f xs filterA :: (Traversable f, Applicative p) => (a -> p Bool) -> f a -> p (f a) filterA f = mapMaybeA (\ x -> (x <$) . guard <$> f x) mapEither :: (a -> Either b c) -> f a -> (f b, f c) mapEither f = (,) <$> mapMaybe (either Just (pure Nothing) . f) <*> mapMaybe (either (pure Nothing) Just . f) mapEitherA :: (Traversable f, Applicative p) => (a -> p (Either b c)) -> f a -> p (f b, f c) mapEitherA f = liftA2 (,) <$> mapMaybeA (fmap (Just `either` pure Nothing) . f) <*> mapMaybeA (fmap (pure Nothing `either` Just) . f) partitionEithers :: f (Either a b) -> (f a, f b) partitionEithers = mapEither id",52,87,2025-11-07 11:48:41.211664,2025-11-07 11:48:41.211664 fin,unknown,Data.Type.Nat,SNatI,src/Data/Type/Nat.hs:125:7-11,"class SNatI (n :: Nat) where induction :: f 'Z "" zero case"" -> (forall m. SNatI m => f m -> f ('S m)) "" induction step"" -> f n",125,129,2025-11-07 11:48:42.373767,2025-11-07 11:48:42.373767 fin,unknown,Data.Type.Nat.LT,LT,src/Data/Type/Nat/LT.hs:49:7-8,"class LT (n :: Nat) (m :: Nat) where ltProof :: LTProof n m",49,50,2025-11-07 11:48:42.373781,2025-11-07 11:48:42.373781 fin,unknown,Data.Type.Nat.LE,LE,src/Data/Type/Nat/LE.hs:87:7-8,"class LE n m where leProof :: LEProof n m",87,88,2025-11-07 11:48:42.373788,2025-11-07 11:48:42.373788 fmt,unknown,Fmt.Internal,FormatAsHex,lib/Fmt/Internal.hs:57:7-17,"class FormatAsHex a where hexF :: a -> Builder",57,66,2025-11-07 11:48:47.348615,2025-11-07 11:48:47.348615 fmt,unknown,Fmt.Internal,FormatAsBase64,lib/Fmt/Internal.hs:83:7-20,"class FormatAsBase64 a where base64F :: a -> Builder base64UrlF :: a -> Builder",83,98,2025-11-07 11:48:47.348630,2025-11-07 11:48:47.348630 fmt,unknown,Fmt.Internal.Generic,GBuildable,lib/Fmt/Internal/Generic.hs:93:7-16,"class GBuildable f where gbuild :: f a -> Builder",93,94,2025-11-07 11:48:47.348637,2025-11-07 11:48:47.348637 fmt,unknown,Fmt.Internal.Generic,Buildable',lib/Fmt/Internal/Generic.hs:141:7-16,"class Buildable' a where build' :: a -> Builder",141,142,2025-11-07 11:48:47.348642,2025-11-07 11:48:47.348642 fmt,unknown,Fmt.Internal.Generic,GetFields,lib/Fmt/Internal/Generic.hs:234:7-15,"class GetFields f where getFields :: f a -> [(String, Builder)]",234,236,2025-11-07 11:48:47.348647,2025-11-07 11:48:47.348647 fmt,unknown,Fmt.Internal.Core,FromBuilder,lib/Fmt/Internal/Core.hs:27:7-17,"class FromBuilder a where fromBuilder :: Builder -> a",27,29,2025-11-07 11:48:47.348653,2025-11-07 11:48:47.348653 fmt,unknown,Fmt.Internal.Template,FormatType,lib/Fmt/Internal/Template.hs:108:7-16,"class FormatType r where format' :: Format -> [Builder] -> r",108,109,2025-11-07 11:48:47.348658,2025-11-07 11:48:47.348658 fmt,unknown,Fmt.Internal.Tuple,TupleF,lib/Fmt/Internal/Tuple.hs:22:7-12,"class TupleF a where tupleF :: a -> Builder",22,41,2025-11-07 11:48:47.348663,2025-11-07 11:48:47.348663 foldable1-classes-compat,unknown,Data.Bifoldable1,Bifoldable1,src/Data/Bifoldable1.hs:25:23-33,"class Bifoldable t => Bifoldable1 t where bifold1 :: Semigroup m => t m m -> m bifold1 = bifoldMap1 id id {-# INLINE bifold1 #-} bifoldMap1 :: Semigroup m => (a -> m) -> (b -> m) -> t a b -> m",25,30,2025-11-07 11:48:48.511003,2025-11-07 11:48:48.511003 foldable1-classes-compat,unknown,Data.Foldable1,Foldable1,src/Data/Foldable1.hs:102:21-29,"class Foldable t => Foldable1 t where {-# MINIMAL foldMap1 | foldrMap1 #-} fold1 :: Semigroup m => t m -> m fold1 = foldMap1 id foldMap1 :: Semigroup m => (a -> m) -> t a -> m foldMap1 f = foldrMap1 f (\ a m -> f a <> m) foldMap1' :: Semigroup m => (a -> m) -> t a -> m foldMap1' f = foldlMap1' f (\ m a -> m <> f a) toNonEmpty :: t a -> NonEmpty a toNonEmpty = runNonEmptyDList . foldMap1 singleton maximum :: Ord a => t a -> a maximum = getMax #. foldMap1' Max minimum :: Ord a => t a -> a minimum = getMin #. foldMap1' Min head :: t a -> a head = getFirst #. foldMap1 First last :: t a -> a last = getLast #. foldMap1 Last foldrMap1 :: (a -> b) -> (a -> b -> b) -> t a -> b foldrMap1 f g xs = appFromMaybe (foldMap1 (FromMaybe #. h) xs) Nothing where h a Nothing = f a h a (Just b) = g a b foldlMap1' :: (a -> b) -> (b -> a -> b) -> t a -> b foldlMap1' f g xs = foldrMap1 f' g' xs SNothing where f' a SNothing = f a f' a (SJust b) = g b a g' a x SNothing = x $! SJust (f a) g' a x (SJust b) = x $! SJust (g b a) foldlMap1 :: (a -> b) -> (b -> a -> b) -> t a -> b foldlMap1 f g xs = appFromMaybe (getDual (foldMap1 ((Dual . FromMaybe) #. h) xs)) Nothing where h a Nothing = f a h a (Just b) = g b a foldrMap1' :: (a -> b) -> (a -> b -> b) -> t a -> b foldrMap1' f g xs = foldlMap1 f' g' xs SNothing where f' a SNothing = f a f' a (SJust b) = g a b g' bb a SNothing = bb $! SJust (f a) g' bb a (SJust b) = bb $! SJust (g a b)",102,220,2025-11-07 11:48:48.511017,2025-11-07 11:48:48.511017 formatting,unknown,Formatting.FromBuilder,FromBuilder,src/Formatting/FromBuilder.hs:27:7-17,"class FromBuilder a where fromBuilder :: Builder -> a",27,28,2025-11-07 11:48:50.910202,2025-11-07 11:48:50.910202 formatting,unknown,Formatting.Buildable,Buildable,src/Formatting/Buildable.hs:37:7-15,"class Buildable p where build :: p -> Builder",37,38,2025-11-07 11:48:50.910216,2025-11-07 11:48:50.910216 foundation,unknown,Foundation.Parser,ParserSource,Foundation/Parser.hs:133:54-65,"class (Sequential input, IndexedCollection input) => ParserSource input where type Chunk input nullChunk :: input -> Chunk input -> Bool appendChunk :: input -> Chunk input -> input subChunk :: input -> Offset (Element input) -> CountOf (Element input) -> Chunk input spanChunk :: input -> Offset (Element input) -> (Element input -> Bool) -> (Chunk input, Offset (Element input))",133,142,2025-11-07 11:48:52.722861,2025-11-07 11:48:52.722861 foundation,unknown,Foundation.Numerical,Signed,Foundation/Numerical.hs:51:7-12,"class Signed a where {-# MINIMAL abs, signum #-} abs :: a -> a signum :: a -> Sign",51,54,2025-11-07 11:48:52.722882,2025-11-07 11:48:52.722882 foundation,unknown,Foundation.Numerical,IntegralRounding,Foundation/Numerical.hs:81:7-22,"class IntegralRounding a where roundUp :: Integral n => a -> n roundDown :: Integral n => a -> n roundTruncate :: Integral n => a -> n roundNearest :: Integral n => a -> n",81,105,2025-11-07 11:48:52.722890,2025-11-07 11:48:52.722890 foundation,unknown,Foundation.Tuple,Fstable,Foundation/Tuple.hs:45:7-13,"class Fstable a where type ProductFirst a fst :: a -> ProductFirst a",45,47,2025-11-07 11:48:52.722898,2025-11-07 11:48:52.722898 foundation,unknown,Foundation.Tuple,Sndable,Foundation/Tuple.hs:50:7-13,"class Sndable a where type ProductSecond a snd :: a -> ProductSecond a",50,52,2025-11-07 11:48:52.722904,2025-11-07 11:48:52.722904 foundation,unknown,Foundation.Tuple,Thdable,Foundation/Tuple.hs:55:7-13,"class Thdable a where type ProductThird a thd :: a -> ProductThird a",55,57,2025-11-07 11:48:52.722909,2025-11-07 11:48:52.722909 foundation,unknown,Foundation.VFS.Path,Path,Foundation/VFS/Path.hs:43:7-10,"class Path path where type PathEnt path type PathPrefix path type PathSuffix path () :: path -> PathEnt path -> path splitPath :: path -> (PathPrefix path, [PathEnt path], PathSuffix path) buildPath :: (PathPrefix path, [PathEnt path], PathSuffix path) -> path",43,76,2025-11-07 11:48:52.722915,2025-11-07 11:48:52.722915 foundation,unknown,Foundation.Collection.Zippable,Zippable,Foundation/Collection/Zippable.hs:31:25-32,"class Sequential col => Zippable col where zipWith :: (Sequential a, Sequential b) => (Element a -> Element b -> Element col) -> a -> b -> col zipWith f a b = go f (toList a, toList b) where go f' = maybe mempty (\ (x, xs) -> uncurry2 f' x `cons` go f' xs) . uncons2 zipWith3 :: (Sequential a, Sequential b, Sequential c) => (Element a -> Element b -> Element c -> Element col) -> a -> b -> c -> col zipWith3 f a b c = go f (toList a, toList b, toList c) where go f' = maybe mempty (\ (x, xs) -> uncurry3 f' x `cons` go f' xs) . uncons3 zipWith4 :: (Sequential a, Sequential b, Sequential c, Sequential d) => (Element a -> Element b -> Element c -> Element d -> Element col) -> a -> b -> c -> d -> col zipWith4 fn a b c d = go fn (toList a, toList b, toList c, toList d) where go f' = maybe mempty (\ (x, xs) -> uncurry4 f' x `cons` go f' xs) . uncons4 zipWith5 :: (Sequential a, Sequential b, Sequential c, Sequential d, Sequential e) => (Element a -> Element b -> Element c -> Element d -> Element e -> Element col) -> a -> b -> c -> d -> e -> col zipWith5 fn a b c d e = go fn (toList a, toList b, toList c, toList d, toList e) where go f' = maybe mempty (\ (x, xs) -> uncurry5 f' x `cons` go f' xs) . uncons5 zipWith6 :: (Sequential a, Sequential b, Sequential c, Sequential d, Sequential e, Sequential f) => (Element a -> Element b -> Element c -> Element d -> Element e -> Element f -> Element col) -> a -> b -> c -> d -> e -> f -> col zipWith6 fn a b c d e f = go fn (toList a, toList b, toList c, toList d, toList e, toList f) where go f' = maybe mempty (\ (x, xs) -> uncurry6 f' x `cons` go f' xs) . uncons6 zipWith7 :: (Sequential a, Sequential b, Sequential c, Sequential d, Sequential e, Sequential f, Sequential g) => (Element a -> Element b -> Element c -> Element d -> Element e -> Element f -> Element g -> Element col) -> a -> b -> c -> d -> e -> f -> g -> col zipWith7 fn a b c d e f g = go fn (toList a, toList b, toList c, toList d, toList e, toList f, toList g) where go f' = maybe mempty (\ (x, xs) -> uncurry7 f' x `cons` go f' xs) . uncons7",31,78,2025-11-07 11:48:52.722923,2025-11-07 11:48:52.722923 foundation,unknown,Foundation.Collection.Zippable,BoxedZippable,Foundation/Collection/Zippable.hs:105:23-35,"class Zippable col => BoxedZippable col where zip :: (Sequential a, Sequential b, Element col ~ (Element a, Element b)) => a -> b -> col zip = zipWith (,) zip3 :: (Sequential a, Sequential b, Sequential c, Element col ~ (Element a, Element b, Element c)) => a -> b -> c -> col zip3 = zipWith3 (,,) zip4 :: (Sequential a, Sequential b, Sequential c, Sequential d, Element col ~ (Element a, Element b, Element c, Element d)) => a -> b -> c -> d -> col zip4 = zipWith4 (,,,) zip5 :: (Sequential a, Sequential b, Sequential c, Sequential d, Sequential e, Element col ~ (Element a, Element b, Element c, Element d, Element e)) => a -> b -> c -> d -> e -> col zip5 = zipWith5 (,,,,) zip6 :: (Sequential a, Sequential b, Sequential c, Sequential d, Sequential e, Sequential f, Element col ~ (Element a, Element b, Element c, Element d, Element e, Element f)) => a -> b -> c -> d -> e -> f -> col zip6 = zipWith6 (,,,,,) zip7 :: (Sequential a, Sequential b, Sequential c, Sequential d, Sequential e, Sequential f, Sequential g, Element col ~ (Element a, Element b, Element c, Element d, Element e, Element f, Element g)) => a -> b -> c -> d -> e -> f -> g -> col zip7 = zipWith7 (,,,,,,) unzip :: (Sequential a, Sequential b, Element col ~ (Element a, Element b)) => col -> (a, b) unzip = go . toList where go [] = (mempty, mempty) go ((a, b) : xs) = let (as, bs) = go xs in (a `cons` as, b `cons` bs) unzip3 :: (Sequential a, Sequential b, Sequential c, Element col ~ (Element a, Element b, Element c)) => col -> (a, b, c) unzip3 = go . toList where go [] = (mempty, mempty, mempty) go ((a, b, c) : xs) = let (as, bs, cs) = go xs in (a `cons` as, b `cons` bs, c `cons` cs) unzip4 :: (Sequential a, Sequential b, Sequential c, Sequential d, Element col ~ (Element a, Element b, Element c, Element d)) => col -> (a, b, c, d) unzip4 = go . toList where go [] = (mempty, mempty, mempty, mempty) go ((a, b, c, d) : xs) = let (as, bs, cs, ds) = go xs in (a `cons` as, b `cons` bs, c `cons` cs, d `cons` ds) unzip5 :: (Sequential a, Sequential b, Sequential c, Sequential d, Sequential e, Element col ~ (Element a, Element b, Element c, Element d, Element e)) => col -> (a, b, c, d, e) unzip5 = go . toList where go [] = (mempty, mempty, mempty, mempty, mempty) go ((a, b, c, d, e) : xs) = let (as, bs, cs, ds, es) = go xs in (a `cons` as, b `cons` bs, c `cons` cs, d `cons` ds, e `cons` es) unzip6 :: (Sequential a, Sequential b, Sequential c, Sequential d, Sequential e, Sequential f, Element col ~ (Element a, Element b, Element c, Element d, Element e, Element f)) => col -> (a, b, c, d, e, f) unzip6 = go . toList where go [] = (mempty, mempty, mempty, mempty, mempty, mempty) go ((a, b, c, d, e, f) : xs) = let (as, bs, cs, ds, es, fs) = go xs in (a `cons` as, b `cons` bs, c `cons` cs, d `cons` ds, e `cons` es, f `cons` fs) unzip7 :: (Sequential a, Sequential b, Sequential c, Sequential d, Sequential e, Sequential f, Sequential g, Element col ~ (Element a, Element b, Element c, Element d, Element e, Element f, Element g)) => col -> (a, b, c, d, e, f, g) unzip7 = go . toList where go [] = (mempty, mempty, mempty, mempty, mempty, mempty, mempty) go ((a, b, c, d, e, f, g) : xs) = let (as, bs, cs, ds, es, fs, gs) = go xs in (a `cons` as, b `cons` bs, c `cons` cs, d `cons` ds, e `cons` es, f `cons` fs, g `cons` gs)",105,203,2025-11-07 11:48:52.722957,2025-11-07 11:48:52.722957 foundation,unknown,Foundation.Collection.InnerFunctor,InnerFunctor,Foundation/Collection/InnerFunctor.hs:14:7-18,"class InnerFunctor c where imap :: (Element c -> Element c) -> c -> c default imap :: (Functor f, Element (f a) ~ a, f a ~ c) => (Element c -> Element c) -> c -> c imap = fmap",14,17,2025-11-07 11:48:52.723065,2025-11-07 11:48:52.723065 foundation,unknown,Foundation.Collection.Indexed,IndexedCollection,Foundation/Collection/Indexed.hs:38:7-23,"class IndexedCollection c where (!) :: c -> Offset (Element c) -> Maybe (Element c) findIndex :: (Element c -> Bool) -> c -> Maybe (Offset (Element c))",38,40,2025-11-07 11:48:52.723074,2025-11-07 11:48:52.723074 foundation,unknown,Foundation.Collection.Sequential,Sequential,Foundation/Collection/Sequential.hs:36:65-74,"class (IsList c, Item c ~ Element c, Monoid c, Collection c) => Sequential c where {-# MINIMAL ((take, drop) | splitAt), ((revTake, revDrop) | revSplitAt), splitOn, (break | span), (breakEnd | spanEnd), intersperse, filter, reverse, uncons, unsnoc, snoc, cons, find, sortBy, singleton, replicate #-} take :: CountOf (Element c) -> c -> c take n = fst . splitAt n revTake :: CountOf (Element c) -> c -> c revTake n = fst . revSplitAt n drop :: CountOf (Element c) -> c -> c drop n = snd . splitAt n revDrop :: CountOf (Element c) -> c -> c revDrop n = snd . revSplitAt n splitAt :: CountOf (Element c) -> c -> (c, c) splitAt n c = (take n c, drop n c) revSplitAt :: CountOf (Element c) -> c -> (c, c) revSplitAt n c = (revTake n c, revDrop n c) splitOn :: (Element c -> Bool) -> c -> [c] break :: (Element c -> Bool) -> c -> (c, c) break predicate = span (not . predicate) breakEnd :: (Element c -> Bool) -> c -> (c, c) breakEnd predicate = spanEnd (not . predicate) breakElem :: Eq (Element c) => Element c -> c -> (c, c) breakElem c = break (== c) takeWhile :: (Element c -> Bool) -> c -> c takeWhile predicate = fst . span predicate dropWhile :: (Element c -> Bool) -> c -> c dropWhile predicate = snd . span predicate intersperse :: Element c -> c -> c intercalate :: Monoid (Item c) => Element c -> c -> Element c intercalate xs xss = mconcatCollection (intersperse xs xss) span :: (Element c -> Bool) -> c -> (c, c) span predicate = break (not . predicate) spanEnd :: (Element c -> Bool) -> c -> (c, c) spanEnd predicate = breakEnd (not . predicate) filter :: (Element c -> Bool) -> c -> c partition :: (Element c -> Bool) -> c -> (c, c) partition predicate c = (filter predicate c, filter (not . predicate) c) reverse :: c -> c uncons :: c -> Maybe (Element c, c) unsnoc :: c -> Maybe (c, Element c) snoc :: c -> Element c -> c cons :: Element c -> c -> c find :: (Element c -> Bool) -> c -> Maybe (Element c) sortBy :: (Element c -> Element c -> Ordering) -> c -> c singleton :: Element c -> c head :: NonEmpty c -> Element c head nel = maybe (error ""head"") fst $ uncons (getNonEmpty nel) last :: NonEmpty c -> Element c last nel = maybe (error ""last"") snd $ unsnoc (getNonEmpty nel) tail :: NonEmpty c -> c tail nel = maybe (error ""tail"") snd $ uncons (getNonEmpty nel) init :: NonEmpty c -> c init nel = maybe (error ""init"") fst $ unsnoc (getNonEmpty nel) replicate :: CountOf (Element c) -> Element c -> c isPrefixOf :: Eq (Element c) => c -> c -> Bool default isPrefixOf :: Eq c => c -> c -> Bool isPrefixOf c1 c2 | len1 > len2 = False | len1 == len2 = c1 == c2 | otherwise = c1 == take len1 c2 where len1 = length c1 len2 = length c2 isSuffixOf :: Eq (Element c) => c -> c -> Bool default isSuffixOf :: Eq c => c -> c -> Bool isSuffixOf c1 c2 | len1 > len2 = False | len1 == len2 = c1 == c2 | otherwise = c1 == revTake len1 c2 where len1 = length c1 len2 = length c2 isInfixOf :: Eq (Element c) => c -> c -> Bool default isInfixOf :: Eq c => c -> c -> Bool isInfixOf c1 c2 = loop (len2 - len1) c2 where len1 = length c1 len2 = length c2 loop (Just cnt) c2' = c1 == take len1 c2' || loop (cnt - 1) (drop 1 c2') loop Nothing _ = False stripPrefix :: Eq (Element c) => c -> c -> Maybe c stripPrefix pre s | isPrefixOf pre s = Just $ drop (length pre) s | otherwise = Nothing stripSuffix :: Eq (Element c) => c -> c -> Maybe c stripSuffix suf s | isSuffixOf suf s = Just $ revDrop (length suf) s | otherwise = Nothing",36,210,2025-11-07 11:48:52.723082,2025-11-07 11:48:52.723082 foundation,unknown,Foundation.Collection.Copy,Copy,Foundation/Collection/Copy.hs:22:7-10,"class Copy a where copy :: a -> a",22,23,2025-11-07 11:48:52.723129,2025-11-07 11:48:52.723129 foundation,unknown,Foundation.Collection.Buildable,Buildable,Foundation/Collection/Buildable.hs:42:7-15,"class Buildable col where type Mutable col :: Type -> Type type Step col {-# MINIMAL append, build #-} append :: (PrimMonad prim) => Element col -> Builder col (Mutable col) (Step col) prim err () build :: (PrimMonad prim) => Int "" CountOf of a chunk"" -> Builder col (Mutable col) (Step col) prim err () -> prim (Either err col)",42,59,2025-11-07 11:48:52.723134,2025-11-07 11:48:52.723134 foundation,unknown,Foundation.Collection.Foldable,Foldable,Foundation/Collection/Foldable.hs:42:7-14,"class Foldable collection where foldl' :: (a -> Element collection -> a) -> a -> collection -> a foldr :: (Element collection -> a -> a) -> a -> collection -> a foldr' :: (Element collection -> a -> a) -> a -> collection -> a foldr' f z0 xs = foldl' f' id xs z0 where f' k x z = k $! f x z",42,63,2025-11-07 11:48:52.723144,2025-11-07 11:48:52.723144 foundation,unknown,Foundation.Collection.Foldable,Fold1able,Foundation/Collection/Foldable.hs:66:21-29,"class Foldable f => Fold1able f where foldl1' :: (Element f -> Element f -> Element f) -> NonEmpty f -> Element f foldr1 :: (Element f -> Element f -> Element f) -> NonEmpty f -> Element f",66,70,2025-11-07 11:48:52.723153,2025-11-07 11:48:52.723153 free,unknown,Control.Comonad.Cofree.Class,ComonadCofree,src/Control/Comonad/Cofree/Class.hs:36:33-45,"class (Functor f, Comonad w) => ComonadCofree f w | w -> f where unwrap :: w a -> f (w a)",36,38,2025-11-07 11:48:54.377904,2025-11-07 11:48:54.377904 generic-arbitrary,unknown,Test,TestCase,test/Test.hs:20:7-14,"class TestCase a where testCase :: String -> a -> IO T.TestTree",20,20,2025-11-07 11:48:56.897334,2025-11-07 11:48:56.897334 foundation,unknown,Foundation.Collection.Mutable,MutableCollection,Foundation/Collection/Mutable.hs:22:7-23,"class MutableCollection c where type MutableFreezed c type MutableKey c type MutableValue c {-# MINIMAL thaw, freeze, mutNew, mutWrite, mutRead, mutUnsafeWrite, mutUnsafeRead #-} unsafeThaw :: PrimMonad prim => MutableFreezed c -> prim (c (PrimState prim)) unsafeThaw = thaw unsafeFreeze :: PrimMonad prim => c (PrimState prim) -> prim (MutableFreezed c) unsafeFreeze = freeze thaw :: PrimMonad prim => MutableFreezed c -> prim (c (PrimState prim)) freeze :: PrimMonad prim => c (PrimState prim) -> prim (MutableFreezed c) mutNew :: PrimMonad prim => CountOf (MutableValue c) -> prim (c (PrimState prim)) mutUnsafeWrite :: PrimMonad prim => c (PrimState prim) -> MutableKey c -> MutableValue c -> prim () mutWrite :: PrimMonad prim => c (PrimState prim) -> MutableKey c -> MutableValue c -> prim () mutUnsafeRead :: PrimMonad prim => c (PrimState prim) -> MutableKey c -> prim (MutableValue c) mutRead :: PrimMonad prim => c (PrimState prim) -> MutableKey c -> prim (MutableValue c)",22,42,2025-11-07 11:48:52.723160,2025-11-07 11:48:52.723160 foundation,unknown,Foundation.Collection.Mappable,Mappable,Foundation/Collection/Mappable.hs:29:29-36,"class Functor collection => Mappable collection where {-# MINIMAL traverse | sequenceA #-} traverse :: Applicative f => (a -> f b) -> collection a -> f (collection b) traverse f = sequenceA . fmap f sequenceA :: Applicative f => collection (f a) -> f (collection a) sequenceA = traverse id mapM :: (Applicative m, Monad m) => (a -> m b) -> collection a -> m (collection b) mapM = traverse sequence :: (Applicative m, Monad m) => collection (m a) -> m (collection a) sequence = sequenceA",29,57,2025-11-07 11:48:52.723178,2025-11-07 11:48:52.723178 foundation,unknown,Foundation.Collection.Keyed,KeyedCollection,Foundation/Collection/Keyed.hs:17:7-21,"class KeyedCollection c where type Key c type Value c lookup :: Key c -> c -> Maybe (Value c)",17,20,2025-11-07 11:48:52.723190,2025-11-07 11:48:52.723190 foundation,unknown,Foundation.Collection.Collection,Collection,Foundation/Collection/Collection.hs:68:41-50,"class (IsList c, Item c ~ Element c) => Collection c where {-# MINIMAL null, length, (elem | notElem), minimum, maximum, all, any #-} null :: c -> Bool length :: c -> CountOf (Element c) elem :: forall a. (Eq a, a ~ Element c) => Element c -> c -> Bool elem e col = not $ e `notElem` col notElem :: forall a. (Eq a, a ~ Element c) => Element c -> c -> Bool notElem e col = not $ e `elem` col maximum :: forall a. (Ord a, a ~ Element c) => NonEmpty c -> Element c minimum :: forall a. (Ord a, a ~ Element c) => NonEmpty c -> Element c any :: (Element c -> Bool) -> c -> Bool all :: (Element c -> Bool) -> c -> Bool",68,96,2025-11-07 11:48:52.723212,2025-11-07 11:48:52.723212 foundation,unknown,Foundation.Conduit.Internal,MonadResource,Foundation/Conduit/Internal.hs:394:20-32,"class MonadIO m => MonadResource m where liftResourceT :: ResourceT IO a -> m a",394,395,2025-11-07 11:48:52.723226,2025-11-07 11:48:52.723226 foundation,unknown,Foundation.Numerical.Floating,FloatingPoint,Foundation/Numerical/Floating.hs:11:7-19,"class FloatingPoint a where floatRadix :: Proxy a -> Integer floatDigits :: Proxy a -> Int floatRange :: Proxy a -> (Int, Int) floatDecode :: a -> (Integer, Int) floatEncode :: Integer -> Int -> a",11,16,2025-11-07 11:48:52.723233,2025-11-07 11:48:52.723233 foundation,unknown,Foundation.Tuple.Nth,Nthable,Foundation/Tuple/Nth.hs:24:21-27,"class KnownNat n => Nthable n a where type NthTy n a nth :: proxy n -> a -> NthTy n a",24,26,2025-11-07 11:48:52.723241,2025-11-07 11:48:52.723241 foundation,unknown,Foundation.Hashing.Hashable,Hashable,Foundation/Hashing/Hashable.hs:36:7-14,"class Hashable a where hashMix :: Hasher st => a -> st -> st",36,37,2025-11-07 11:48:52.723246,2025-11-07 11:48:52.723246 foundation,unknown,Foundation.Hashing.Hasher,Hasher,Foundation/Hashing/Hasher.hs:18:7-12,"class Hasher st where type HashResult st type HashInitParam st {-# MINIMAL hashNew, hashNewParam, hashMix8, hashEnd #-} hashNew :: st hashNewParam :: HashInitParam st -> st hashEnd :: st -> HashResult st hashMix8 :: Word8 -> st -> st hashMix16 :: Word16 -> st -> st hashMix16 w st = hashMix8 w2 $ hashMix8 w1 st where !w1 = integralDownsize (w `unsafeShiftR` 8) !w2 = integralDownsize w hashMix32 :: Word32 -> st -> st hashMix32 w st = hashMix8 w4 $ hashMix8 w3 $ hashMix8 w2 $ hashMix8 w1 st where !w1 = integralDownsize (w `unsafeShiftR` 24) !w2 = integralDownsize (w `unsafeShiftR` 16) !w3 = integralDownsize (w `unsafeShiftR` 8) !w4 = integralDownsize w hashMix64 :: Word64 -> st -> st hashMix64 w st = hashMix32 w2 $ hashMix32 w1 st where !w1 = integralDownsize (w `unsafeShiftR` 32) !w2 = integralDownsize w hashMixBytes :: A.PrimType e => UArray e -> st -> st hashMixBytes ba st = A.foldl' (flip hashMix8) st (A.unsafeRecast ba)",18,64,2025-11-07 11:48:52.723252,2025-11-07 11:48:52.723252 foundation,unknown,Trigonometry,Trigonometry,Foundation/Math/Trigonometry.hs:10:7-18,"class Trigonometry a where pi :: a sin :: a -> a cos :: a -> a tan :: a -> a asin :: a -> a acos :: a -> a atan :: a -> a sinh :: a -> a cosh :: a -> a tanh :: a -> a asinh :: a -> a acosh :: a -> a atanh :: a -> a",10,36,2025-11-07 11:48:52.723269,2025-11-07 11:48:52.723269 foundation,unknown,Foundation.Format.CSV.Types,IsField,Foundation/Format/CSV/Types.hs:69:7-13,"class IsField a where toField :: a -> Field fromField :: Field -> Either String a",69,71,2025-11-07 11:48:52.723276,2025-11-07 11:48:52.723276 foundation,unknown,Foundation.Format.CSV.Types,Record,Foundation/Format/CSV/Types.hs:209:7-12,"class Record a where toRow :: a -> Row fromRow :: Row -> Either String a",209,211,2025-11-07 11:48:52.723282,2025-11-07 11:48:52.723282 foundation,unknown,Foundation.Class.Storable,Storable,Foundation/Class/Storable.hs:50:7-14,"class Storable a where peek :: Ptr a -> IO a poke :: Ptr a -> a -> IO ()",50,52,2025-11-07 11:48:52.723288,2025-11-07 11:48:52.723288 foundation,unknown,Foundation.Class.Storable,StorableFixed,Foundation/Class/Storable.hs:57:21-33,"class Storable a => StorableFixed a where size :: proxy a -> CountOf Word8 alignment :: proxy a -> CountOf Word8",57,59,2025-11-07 11:48:52.723293,2025-11-07 11:48:52.723293 foundation,unknown,Foundation.Monad.State,MonadState,Foundation/Monad/State.hs:18:18-27,"class Monad m => MonadState m where type State m withState :: (State m -> (a, State m)) -> m a",18,20,2025-11-07 11:48:52.723300,2025-11-07 11:48:52.723300 foundation,unknown,Foundation.Monad.Reader,MonadReader,Foundation/Monad/Reader.hs:19:18-28,"class Monad m => MonadReader m where type ReaderContext m ask :: m (ReaderContext m)",19,21,2025-11-07 11:48:52.723306,2025-11-07 11:48:52.723306 foundation,unknown,Foundation.Monad.Transformer,MonadTrans,Foundation/Monad/Transformer.hs:9:7-16,"class MonadTrans trans where lift :: Monad m => m a -> trans m a",9,11,2025-11-07 11:48:52.723312,2025-11-07 11:48:52.723312 foundation,unknown,Foundation.Monad.Exception,MonadThrow,Foundation/Monad/Exception.hs:13:18-27,"class Monad m => MonadThrow m where throw :: Exception e => e -> m a",13,16,2025-11-07 11:48:52.723318,2025-11-07 11:48:52.723318 foundation,unknown,Foundation.Monad.Exception,MonadCatch,Foundation/Monad/Exception.hs:19:23-32,"class MonadThrow m => MonadCatch m where catch :: Exception e => m a -> (e -> m a) -> m a",19,20,2025-11-07 11:48:52.723323,2025-11-07 11:48:52.723323 generic-arbitrary,unknown,Test.QuickCheck.Arbitrary.Generic,GArbitrary,src/Test/QuickCheck/Arbitrary/Generic.hs:237:35-44,"class (Finite self a ~ finite) => GArbitrary self a (finite :: Bool) where gArbitrary :: Proxy self -> QC.Gen (a x)",237,238,2025-11-07 11:48:56.897352,2025-11-07 11:48:56.897352 foundation,unknown,Foundation.Monad.Exception,MonadBracket,Foundation/Monad/Exception.hs:25:23-34,"class MonadCatch m => MonadBracket m where generalBracket :: m a "" acquire some resource"" -> (a -> b -> m ignored1) "" cleanup, no exception thrown"" -> (a -> E.SomeException -> m ignored2) "" cleanup, some exception thrown. The exception will be rethrown"" -> (a -> m b) "" inner action to perform with the resource"" -> m b",25,37,2025-11-07 11:48:52.723329,2025-11-07 11:48:52.723329 foundation,unknown,Foundation.Random.DRG,RandomGen,Foundation/Random/DRG.hs:11:7-15,"class RandomGen gen where randomNew :: MonadRandom m => m gen randomNewFrom :: UArray Word8 -> Maybe gen randomGenerate :: CountOf Word8 -> gen -> (UArray Word8, gen) randomGenerateWord64 :: gen -> (Word64, gen) randomGenerateF32 :: gen -> (Float, gen) randomGenerateF64 :: gen -> (Double, gen)",11,29,2025-11-07 11:48:52.723338,2025-11-07 11:48:52.723338 foundation,unknown,Foundation.Random.Class,MonadRandom,Foundation/Random/Class.hs:11:46-56,"class (Functor m, Applicative m, Monad m) => MonadRandom m where getRandomBytes :: CountOf Word8 -> m (UArray Word8) getRandomWord64 :: m Word64 getRandomF32 :: m Float getRandomF64 :: m Double",11,15,2025-11-07 11:48:52.723346,2025-11-07 11:48:52.723346 foundation,unknown,Foundation.Check.Property,IsProperty,Foundation/Check/Property.hs:53:7-16,"class IsProperty p where property :: p -> Property",53,54,2025-11-07 11:48:52.723354,2025-11-07 11:48:52.723354 foundation,unknown,Foundation.Check.Arbitrary,Arbitrary,Foundation/Check/Arbitrary.hs:35:7-15,"class Arbitrary a where arbitrary :: Gen a",35,36,2025-11-07 11:48:52.723359,2025-11-07 11:48:52.723359 free,unknown,Control.Monad.Free.Class,MonadFree,src/Control/Monad/Free/Class.hs:105:18-26,"class Monad m => MonadFree f m | m -> f where wrap :: f (m a) -> m a default wrap :: (m ~ t n, MonadTrans t, MonadFree f n, Functor f) => f (m a) -> m a wrap = join . lift . wrap . fmap return",105,114,2025-11-07 11:48:54.377918,2025-11-07 11:48:54.377918 generic-arbitrary,unknown,Test.QuickCheck.Arbitrary.Generic,FiniteSum,src/Test/QuickCheck/Arbitrary/Generic.hs:315:8-16,"class (Finite self a ~ af, Finite self b ~ bf) => FiniteSum self (a :: * -> *) (b :: * -> *) af bf where finiteSum :: Proxy self -> [Gen ((a :+: b) p)]",313,316,2025-11-07 11:48:56.897360,2025-11-07 11:48:56.897360 generic-arbitrary,unknown,Test.QuickCheck.Arbitrary.Generic,FiniteSumElem,src/Test/QuickCheck/Arbitrary/Generic.hs:341:7-19,"class FiniteSumElem self a where finiteElem :: Proxy self -> [Gen (a p)]",341,342,2025-11-07 11:48:56.897369,2025-11-07 11:48:56.897369 generic-data,unknown,Generic.Data.Internal.Show,GShow,src/Generic/Data/Internal/Show.hs:64:7-11,"class GShow p f where gPrecShows :: p (ShowsPrec a) -> f a -> PrecShowS",64,65,2025-11-07 11:48:58.155512,2025-11-07 11:48:58.155512 generic-data,unknown,Generic.Data.Internal.Show,GShowC,src/Generic/Data/Internal/Show.hs:80:7-12,"class GShowC p c f where gPrecShowsC :: p (ShowsPrec a) -> String -> Fixity -> M1 C c f a -> PrecShowS",80,81,2025-11-07 11:48:58.155526,2025-11-07 11:48:58.155526 generic-data,unknown,Generic.Data.Internal.Show,GShowFields,src/Generic/Data/Internal/Show.hs:98:7-17,"class GShowFields p f where gPrecShowsFields :: p (ShowsPrec a) -> f a -> [PrecShowS]",98,99,2025-11-07 11:48:58.155533,2025-11-07 11:48:58.155533 generic-data,unknown,Generic.Data.Internal.Show,GShowNamed,src/Generic/Data/Internal/Show.hs:110:7-16,"class GShowNamed p f where gPrecShowsNamed :: p (ShowsPrec a) -> f a -> ShowFields",110,111,2025-11-07 11:48:58.155542,2025-11-07 11:48:58.155542 generic-data,unknown,Generic.Data.Internal.Show,GShowSingle,src/Generic/Data/Internal/Show.hs:126:7-17,"class GShowSingle p f where gPrecShowsSingle :: p (ShowsPrec a) -> f a -> PrecShowS",126,127,2025-11-07 11:48:58.155548,2025-11-07 11:48:58.155548 generic-data,unknown,Generic.Data.Internal.Error,Assert,src/Generic/Data/Internal/Error.hs:35:7-12,class Assert (pred :: Bool) (msg :: ErrorMessage),35,35,2025-11-07 11:48:58.155554,2025-11-07 11:48:58.155554 generic-data,unknown,Generic.Data.Internal.Enum,GEnum,src/Generic/Data/Internal/Enum.hs:244:7-11,"class GEnum opts f where gCardinality :: Int gFromEnum :: f p -> Int gToEnum :: Int -> f p",244,247,2025-11-07 11:48:58.155562,2025-11-07 11:48:58.155562 generic-data,unknown,Generic.Data.Internal.Enum,GBounded,src/Generic/Data/Internal/Enum.hs:336:7-14,"class GBounded f where gMinBound :: f p gMaxBound :: f p",336,338,2025-11-07 11:48:58.155568,2025-11-07 11:48:58.155568 generic-data,unknown,Generic.Data.Internal.Enum,GIx,src/Generic/Data/Internal/Enum.hs:360:7-9,"class GIx f where gRange :: (f p, f p) -> [f p] gUnsafeIndex :: (f p, f p) -> f p -> Int gInRange :: (f p, f p) -> f p -> Bool",360,363,2025-11-07 11:48:58.155573,2025-11-07 11:48:58.155573 generic-data,unknown,Generic.Data.Internal.Newtype,Newtype,src/Generic/Data/Internal/Newtype.hs:31:55-61,"class (Generic a, Coercible a (Old a), Newtype' a) => Newtype a",31,31,2025-11-07 11:48:58.155579,2025-11-07 11:48:58.155579 generic-data,unknown,Generic.Data.Internal.Microsurgery,UnifyRep,src/Generic/Data/Internal/Microsurgery.hs:247:7-14,class UnifyRep (f :: k -> Type) (g :: k -> Type),247,247,2025-11-07 11:48:58.155585,2025-11-07 11:48:58.155585 generic-data,unknown,Generic.Data.Internal.Meta,GDatatype,src/Generic/Data/Internal/Meta.hs:77:7-15,"class GDatatype f where gDatatypeName :: String gModuleName :: String gPackageName :: String gIsNewtype :: Bool",77,81,2025-11-07 11:48:58.155591,2025-11-07 11:48:58.155591 generic-data,unknown,Generic.Data.Internal.Meta,Constructors,src/Generic/Data/Internal/Meta.hs:176:45-56,"class (Generic a, GConstructors (Rep a)) => Constructors a",176,176,2025-11-07 11:48:58.155596,2025-11-07 11:48:58.155596 generic-data,unknown,Generic.Data.Internal.Meta,ConIdNamed,src/Generic/Data/Internal/Meta.hs:180:50-59,"class (Generic a, KnownNat (ConIdNamed' n a)) => ConIdNamed n a",180,180,2025-11-07 11:48:58.155602,2025-11-07 11:48:58.155602 generic-data,unknown,Generic.Data.Internal.Meta,GConstructors,src/Generic/Data/Internal/Meta.hs:207:7-19,"class GConstructors r where gConIdToString :: GConId r -> String gConId :: r p -> GConId r gConNum :: Int gConFixity :: r p -> Fixity gConIsRecord :: r p -> Bool",207,212,2025-11-07 11:48:58.155607,2025-11-07 11:48:58.155607 generic-data,unknown,Generic.Data.Internal.Meta,NonEmptyType,src/Generic/Data/Internal/Meta.hs:280:35-46,class NonEmptyType_ fname a => NonEmptyType fname a,280,280,2025-11-07 11:48:58.155614,2025-11-07 11:48:58.155614 generic-data,unknown,Generic.Data.Internal.Read,GRead,src/Generic/Data/Internal/Read.hs:61:7-11,"class GRead p f where gPrecRead :: p (ReadPrec a, ReadPrec [a]) -> ReadPrec (f a)",61,62,2025-11-07 11:48:58.155619,2025-11-07 11:48:58.155619 generic-data,unknown,Generic.Data.Internal.Read,IsNullaryDataType,src/Generic/Data/Internal/Read.hs:87:7-23,"class IsNullaryDataType f where isNullaryDataType :: f a -> Bool",87,88,2025-11-07 11:48:58.155624,2025-11-07 11:48:58.155624 generic-data,unknown,Generic.Data.Internal.Read,GReadC,src/Generic/Data/Internal/Read.hs:99:7-12,"class GReadC p c f where gPrecReadC :: p (ReadPrec a, ReadPrec [a]) -> String -> Fixity -> ReadPrec (M1 C c f a)",99,100,2025-11-07 11:48:58.155630,2025-11-07 11:48:58.155630 generic-data,unknown,Generic.Data.Internal.Read,GReadFields,src/Generic/Data/Internal/Read.hs:129:7-17,"class GReadFields p f where gPrecReadFields :: p (ReadPrec a, ReadPrec [a]) -> ReadPrecTree (f a)",129,130,2025-11-07 11:48:58.155636,2025-11-07 11:48:58.155636 generic-data,unknown,Generic.Data.Internal.Read,GReadNamed,src/Generic/Data/Internal/Read.hs:141:7-16,"class GReadNamed p f where gPrecReadNamed :: p (ReadPrec a, ReadPrec [a]) -> ReadPrec (f a)",141,142,2025-11-07 11:48:58.155641,2025-11-07 11:48:58.155641 generic-data,unknown,Generic.Data.Internal.Read,GReadSingle,src/Generic/Data/Internal/Read.hs:172:7-17,"class GReadSingle p f where gPrecReadSingle :: p (ReadPrec a, ReadPrec [a]) -> ReadPrec (f a)",172,173,2025-11-07 11:48:58.155650,2025-11-07 11:48:58.155650 generic-data,unknown,Generic.Data.Internal.Traversable,GFoldable,src/Generic/Data/Internal/Traversable.hs:81:26-34,class GFoldable_ t => GFoldable t,81,81,2025-11-07 11:48:58.155656,2025-11-07 11:48:58.155656 generic-data,unknown,Generic.Data.Internal.Traversable,GTraversable,src/Generic/Data/Internal/Traversable.hs:85:29-40,class GTraversable_ t => GTraversable t,85,85,2025-11-07 11:48:58.155661,2025-11-07 11:48:58.155661 generic-data,unknown,Generic.Data.Internal.Traversable,GFoldable_,src/Generic/Data/Internal/Traversable.hs:89:38-47,"class (GFoldMap t, Foldable t) => GFoldable_ t",89,89,2025-11-07 11:48:58.155666,2025-11-07 11:48:58.155666 generic-data,unknown,Generic.Data.Internal.Traversable,GTraversable_,src/Generic/Data/Internal/Traversable.hs:93:54-66,"class (GTraverse Kleisli t, GTraverse Equal t) => GTraversable_ t",93,93,2025-11-07 11:48:58.155673,2025-11-07 11:48:58.155673 generic-data,unknown,Generic.Data.Internal.Traversable,GFoldMap,src/Generic/Data/Internal/Traversable.hs:122:7-14,"class GFoldMap t where gfoldMap_ :: Monoid m => (a -> m) -> t a -> EndoM m",122,123,2025-11-07 11:48:58.155678,2025-11-07 11:48:58.155678 generic-data,unknown,Generic.Data.Internal.Traversable,GTraverse,src/Generic/Data/Internal/Traversable.hs:170:7-15,"class GTraverse arr t where gtraverse_ :: Applicative f => arr f a b -> t a -> Aps f (t b)",170,171,2025-11-07 11:48:58.155684,2025-11-07 11:48:58.155684 generic-deriving,unknown,Generics.Deriving.Functor,GFunctor',src/Generics/Deriving/Functor.hs:76:7-15,"class GFunctor' f where gmap' :: (a -> b) -> f a -> f b",76,77,2025-11-07 11:48:59.662165,2025-11-07 11:48:59.662165 generic-deriving,unknown,Generics.Deriving.Functor,GFunctor,src/Generics/Deriving/Functor.hs:130:7-14,"class GFunctor f where gmap :: (a -> b) -> f a -> f b default gmap :: (Generic1 f, GFunctor' (Rep1 f)) => (a -> b) -> f a -> f b gmap = gmapdefault",130,135,2025-11-07 11:48:59.662182,2025-11-07 11:48:59.662182 generic-deriving,unknown,Generics.Deriving.Copoint,GCopoint',src/Generics/Deriving/Copoint.hs:61:7-15,"class GCopoint' t where gcopoint' :: t a -> Maybe a",61,62,2025-11-07 11:48:59.662190,2025-11-07 11:48:59.662190 generic-deriving,unknown,Generics.Deriving.Copoint,GCopoint,src/Generics/Deriving/Copoint.hs:95:7-14,"class GCopoint d where gcopoint :: d a -> a default gcopoint :: (Generic1 d, GCopoint' (Rep1 d)) => (d a -> a) gcopoint = gcopointdefault",95,100,2025-11-07 11:48:59.662196,2025-11-07 11:48:59.662196 generic-deriving,unknown,Generics.Deriving.Show,GShow',src/Generics/Deriving/Show.hs:88:7-12,"class GShow' f where gshowsPrec' :: Type -> Int -> f a -> ShowS isNullary :: f a -> Bool isNullary = error ""generic show (isNullary): unnecessary case""",88,91,2025-11-07 11:48:59.662203,2025-11-07 11:48:59.662203 generic-deriving,unknown,Generics.Deriving.Show,GShow,src/Generics/Deriving/Show.hs:178:7-11,"class GShow a where gshowsPrec :: Int -> a -> ShowS default gshowsPrec :: (Generic a, GShow' (Rep a)) => Int -> a -> ShowS gshowsPrec = gshowsPrecdefault gshows :: a -> ShowS gshows = gshowsPrec 0 gshow :: a -> String gshow x = gshows x """" gshowList :: [a] -> ShowS gshowList l = showChar '[' . foldr (.) id (intersperse (showChar ',') (map (gshowsPrec 0) l)) . showChar ']'",178,196,2025-11-07 11:48:59.662209,2025-11-07 11:48:59.662209 generic-deriving,unknown,Generics.Deriving.Enum,Enum',src/Generics/Deriving/Enum.hs:116:7-11,"class Enum' f where enum' :: [f a]",116,117,2025-11-07 11:48:59.662219,2025-11-07 11:48:59.662219 generic-deriving,unknown,Generics.Deriving.Enum,GEnum,src/Generics/Deriving/Enum.hs:150:7-11,"class GEnum a where genum :: [a] default genum :: (Generic a, Enum' (Rep a)) => [a] genum = genumDefault",150,155,2025-11-07 11:48:59.662224,2025-11-07 11:48:59.662224 generic-deriving,unknown,Generics.Deriving.Enum,GIx,src/Generics/Deriving/Enum.hs:585:18-20,"class (Ord a) => GIx a where range :: (a, a) -> [a] index :: (a, a) -> a -> Int inRange :: (a, a) -> a -> Bool default range :: (GEq a, Generic a, Enum' (Rep a)) => (a, a) -> [a] range = rangeDefault default index :: (GEq a, Generic a, Enum' (Rep a)) => (a, a) -> a -> Int index = indexDefault default inRange :: (GEq a, Generic a, Enum' (Rep a)) => (a, a) -> a -> Bool inRange = inRangeDefault",585,601,2025-11-07 11:48:59.662230,2025-11-07 11:48:59.662230 generic-deriving,unknown,Generics.Deriving.Foldable,GFoldable',src/Generics/Deriving/Foldable.hs:91:7-16,"class GFoldable' t where gfoldMap' :: Monoid m => (a -> m) -> t a -> m",91,92,2025-11-07 11:48:59.662240,2025-11-07 11:48:59.662240 generic-deriving,unknown,Generics.Deriving.Foldable,GFoldable,src/Generics/Deriving/Foldable.hs:140:7-15,"class GFoldable t where gfoldMap :: Monoid m => (a -> m) -> t a -> m default gfoldMap :: (Generic1 t, GFoldable' (Rep1 t), Monoid m) => (a -> m) -> t a -> m gfoldMap = gfoldMapdefault gfold :: Monoid m => t m -> m gfold = gfoldMap id gfoldr :: (a -> b -> b) -> b -> t a -> b gfoldr f z t = appEndo (gfoldMap (Endo . f) t) z gfoldr' :: (a -> b -> b) -> b -> t a -> b gfoldr' f z0 xs = gfoldl f' id xs z0 where f' k x z = k $! f x z gfoldl :: (a -> b -> a) -> a -> t b -> a gfoldl f z t = appEndo (getDual (gfoldMap (Dual . Endo . flip f) t)) z gfoldl' :: (a -> b -> a) -> a -> t b -> a gfoldl' f z0 xs = gfoldr f' id xs z0 where f' x k z = k $! f z x gfoldr1 :: (a -> a -> a) -> t a -> a gfoldr1 f xs = fromMaybe (error ""gfoldr1: empty structure"") (gfoldr mf Nothing xs) where mf x Nothing = Just x mf x (Just y) = Just (f x y) gfoldl1 :: (a -> a -> a) -> t a -> a gfoldl1 f xs = fromMaybe (error ""foldl1: empty structure"") (gfoldl mf Nothing xs) where mf Nothing y = Just y mf (Just x) y = Just (f x y)",140,177,2025-11-07 11:48:59.662245,2025-11-07 11:48:59.662245 generic-deriving,unknown,Generics.Deriving.ConNames,ConNames,src/Generics/Deriving/ConNames.hs:41:7-14,"class ConNames f where gconNames :: f a -> [String] gconNameOf :: f a -> String",41,43,2025-11-07 11:48:59.662265,2025-11-07 11:48:59.662265 generic-deriving,unknown,Generics.Deriving.Eq,GEq',src/Generics/Deriving/Eq.hs:82:7-10,"class GEq' f where geq' :: f a -> f a -> Bool",82,83,2025-11-07 11:48:59.662271,2025-11-07 11:48:59.662271 generic-deriving,unknown,Generics.Deriving.Eq,GEq,src/Generics/Deriving/Eq.hs:127:7-9,"class GEq a where geq :: a -> a -> Bool default geq :: (Generic a, GEq' (Rep a)) => a -> a -> Bool geq = geqdefault",127,133,2025-11-07 11:48:59.662276,2025-11-07 11:48:59.662276 generic-deriving,unknown,Generics.Deriving.Uniplate,Uniplate',src/Generics/Deriving/Uniplate.hs:72:7-15,"class Uniplate' f b where children' :: f a -> [b] descend' :: (b -> b) -> f a -> f a descendM' :: Monad m => (b -> m b) -> f a -> m (f a) transform' :: (b -> b) -> f a -> f a transformM' :: Monad m => (b -> m b) -> f a -> m (f a)",72,77,2025-11-07 11:48:59.662283,2025-11-07 11:48:59.662283 generic-deriving,unknown,Generics.Deriving.Uniplate,Context',src/Generics/Deriving/Uniplate.hs:137:7-14,"class Context' f b where context' :: f a -> [b] -> f a",137,138,2025-11-07 11:48:59.662290,2025-11-07 11:48:59.662290 generic-lens,unknown,Bifunctor,Bifunctor,test/Bifunctor.hs:40:7-15,"class Bifunctor p where bimap :: (a -> c) -> (b -> d) -> p a b -> p c d",40,41,2025-11-07 11:49:01.035634,2025-11-07 11:49:01.035634 generic-lens,unknown,Test40,MyClass,test/Test40.hs:12:7-13,"class MyClass a where data AssocData a",12,13,2025-11-07 11:49:01.035648,2025-11-07 11:49:01.035648 generic-lens,unknown,Test25,Default,test/Test25.hs:18:7-13,"class Default a where def :: a",18,19,2025-11-07 11:49:01.035655,2025-11-07 11:49:01.035655 generic-lens,unknown,Data.Generics.Labels,Field,src/Data/Generics/Labels.hs:84:7-11,"class Field name s t a b | s name -> a, t name -> b, s name b -> t, t name a -> s where fieldLens :: Lens s t a b",84,85,2025-11-07 11:49:01.035660,2025-11-07 11:49:01.035660 generic-deriving,unknown,Generics.Deriving.Uniplate,Uniplate,src/Generics/Deriving/Uniplate.hs:181:7-14,"class Uniplate a where children :: a -> [a] default children :: (Generic a, Uniplate' (Rep a) a) => a -> [a] children = childrendefault context :: a -> [a] -> a default context :: (Generic a, Context' (Rep a) a) => a -> [a] -> a context = contextdefault descend :: (a -> a) -> a -> a default descend :: (Generic a, Uniplate' (Rep a) a) => (a -> a) -> a -> a descend = descenddefault descendM :: Monad m => (a -> m a) -> a -> m a default descendM :: (Generic a, Uniplate' (Rep a) a, Monad m) => (a -> m a) -> a -> m a descendM = descendMdefault transform :: (a -> a) -> a -> a default transform :: (Generic a, Uniplate' (Rep a) a) => (a -> a) -> a -> a transform = transformdefault transformM :: Monad m => (a -> m a) -> a -> m a default transformM :: (Generic a, Uniplate' (Rep a) a, Monad m) => (a -> m a) -> a -> m a transformM = transformMdefault",181,215,2025-11-07 11:48:59.662295,2025-11-07 11:48:59.662295 generic-deriving,unknown,Generics.Deriving.Traversable,GTraversable',src/Generics/Deriving/Traversable.hs:80:7-19,"class GTraversable' t where gtraverse' :: Applicative f => (a -> f b) -> t a -> f (t b)",80,81,2025-11-07 11:48:59.662310,2025-11-07 11:48:59.662310 generic-deriving,unknown,Generics.Deriving.Traversable,GTraversable,src/Generics/Deriving/Traversable.hs:134:36-47,"class (GFunctor t, GFoldable t) => GTraversable t where gtraverse :: Applicative f => (a -> f b) -> t a -> f (t b) default gtraverse :: (Generic1 t, GTraversable' (Rep1 t), Applicative f) => (a -> f b) -> t a -> f (t b) gtraverse = gtraversedefault gsequenceA :: Applicative f => t (f a) -> f (t a) gsequenceA = gtraverse id gmapM :: Monad m => (a -> m b) -> t a -> m (t b) gmapM f = unwrapMonad . gtraverse (WrapMonad . f) gsequence :: Monad m => t (m a) -> m (t a) gsequence = gmapM id",134,149,2025-11-07 11:48:59.662316,2025-11-07 11:48:59.662316 generic-deriving,unknown,Generics.Deriving.Monoid.Internal,GMonoid',src/Generics/Deriving/Monoid/Internal.hs:97:24-31,"class GSemigroup' f => GMonoid' f where gmempty' :: f x gmappend' :: f x -> f x -> f x",97,99,2025-11-07 11:48:59.662327,2025-11-07 11:48:59.662327 generic-deriving,unknown,Generics.Deriving.Monoid.Internal,Monoid',src/Generics/Deriving/Monoid/Internal.hs:127:7-13,"class Monoid' f where mempty' :: f x mappend' :: f x -> f x -> f x",127,129,2025-11-07 11:48:59.662379,2025-11-07 11:48:59.662379 generic-deriving,unknown,Generics.Deriving.Monoid.Internal,GMonoid,src/Generics/Deriving/Monoid/Internal.hs:157:23-29,"class GSemigroup a => GMonoid a where gmempty :: a gmappend :: a -> a -> a gmconcat :: [a] -> a gmconcat = foldr gmappend gmempty default gmempty :: (Generic a, GMonoid' (Rep a)) => a gmempty = to gmempty' default gmappend :: (Generic a, GMonoid' (Rep a)) => a -> a -> a gmappend x y = to (gmappend' (from x) (from y))",157,174,2025-11-07 11:48:59.662385,2025-11-07 11:48:59.662385 generic-deriving,unknown,Generics.Deriving.Semigroup.Internal,GSemigroup',src/Generics/Deriving/Semigroup/Internal.hs:62:7-17,"class GSemigroup' f where gsappend' :: f x -> f x -> f x",62,63,2025-11-07 11:48:59.662394,2025-11-07 11:48:59.662394 generic-deriving,unknown,Generics.Deriving.Semigroup.Internal,GSemigroup,src/Generics/Deriving/Semigroup/Internal.hs:80:7-16,"class GSemigroup a where gsappend :: a -> a -> a default gsappend :: (Generic a, GSemigroup' (Rep a)) => a -> a -> a gsappend = gsappenddefault gstimes :: Integral b => b -> a -> a gstimes y0 x0 | y0 <= 0 = error ""gstimes: positive multiplier expected"" | otherwise = f x0 y0 where f x y | even y = f (gsappend x x) (y `quot` 2) | y == 1 = x | otherwise = g (gsappend x x) (pred y `quot` 2) x g x y z | even y = g (gsappend x x) (y `quot` 2) z | y == 1 = gsappend x z | otherwise = g (gsappend x x) (pred y `quot` 2) (gsappend x z) gsconcat :: NonEmpty a -> a gsconcat (a :| as) = go a as where go b (c : cs) = gsappend b (go c cs) go b [] = b",80,106,2025-11-07 11:48:59.662400,2025-11-07 11:48:59.662400 generic-lens,unknown,Data.Generics.Labels,Constructor,src/Data/Generics/Labels.hs:99:7-17,"class Constructor name s t a b | name s -> a, name t -> b where constructorPrism :: Prism s t a b",99,100,2025-11-07 11:49:01.035668,2025-11-07 11:49:01.035668 generic-lens,unknown,Data.Generics.Labels,IsLabelHelper,src/Data/Generics/Labels.hs:134:7-19,"class IsLabelHelper labelType name p f s t a b where labelOutput :: p a (f b) -> p s (f t)",134,135,2025-11-07 11:49:01.035674,2025-11-07 11:49:01.035674 generic-lens,unknown,Data.Generics.Wrapped,Wrapped,src/Data/Generics/Wrapped.hs:55:7-13,"class Wrapped s t a b | s -> a, t -> b where wrappedIso :: VL.Iso s t a b",55,57,2025-11-07 11:49:01.035679,2025-11-07 11:49:01.035679 generic-lens,unknown,Data.Generics.Product.Typed,HasType,src/Data/Generics/Product/Typed.hs:61:7-13,"class HasType a s where typed :: VL.Lens s s a a typed = VL.lens (getTyped @a) (flip (setTyped @a)) {-# INLINE typed #-} getTyped :: s -> a getTyped s = s ^. typed @a setTyped :: a -> s -> s setTyped = VL.set (typed @a) {-# MINIMAL typed | setTyped, getTyped #-}",61,99,2025-11-07 11:49:01.035685,2025-11-07 11:49:01.035685 generic-lens,unknown,Data.Generics.Product.Subtype,Subtype,src/Data/Generics/Product/Subtype.hs:74:7-13,"class Subtype sup sub where super :: VL.Lens sub sub sup sup super = VL.lens upcast (flip smash) {-# INLINE super #-} upcast :: sub -> sup upcast s = s ^. super @sup {-# INLINE upcast #-} smash :: sup -> sub -> sub smash = VL.set (super @sup) {-# INLINE smash #-} {-# MINIMAL super | smash, upcast #-}",74,111,2025-11-07 11:49:01.035693,2025-11-07 11:49:01.035693 generic-lens,unknown,Data.Generics.Product.Param,HasParam,src/Data/Generics/Product/Param.hs:43:7-14,"class HasParam (p :: Nat) s t a b | p t a -> s, p s b -> t, p s -> a, p t -> b where param :: Traversal s t a b",43,44,2025-11-07 11:49:01.035701,2025-11-07 11:49:01.035701 generic-lens,unknown,Data.Generics.Product.HList,IsList,src/Data/Generics/Product/HList.hs:36:7-12,"class IsList (f :: Type) (g :: Type) (as :: [Type]) (bs :: [Type]) | f -> as, g -> bs where list :: Iso f g (Core.HList as) (Core.HList bs)",36,41,2025-11-07 11:49:01.035707,2025-11-07 11:49:01.035707 generic-lens,unknown,Data.Generics.Product.Any,HasAny,src/Data/Generics/Product/Any.hs:57:7-12,"class HasAny sel s t a b | s sel -> a where the :: Lens s t a b",57,71,2025-11-07 11:49:01.035714,2025-11-07 11:49:01.035714 generic-lens,unknown,Data.Generics.Product.Positions,HasPosition,src/Data/Generics/Product/Positions.hs:75:7-17,"class HasPosition (i :: Nat) s t a b | s i -> a, t i -> b, s i b -> t, t i a -> s where position :: VL.Lens s t a b",75,90,2025-11-07 11:49:01.035719,2025-11-07 11:49:01.035719 generic-lens,unknown,Data.Generics.Product.Positions,HasPosition_,src/Data/Generics/Product/Positions.hs:92:7-18,"class HasPosition_ (i :: Nat) s t a b where position_ :: VL.Lens s t a b",92,93,2025-11-07 11:49:01.035727,2025-11-07 11:49:01.035727 generic-lens,unknown,Data.Generics.Product.Positions,HasPosition',src/Data/Generics/Product/Positions.hs:101:7-18,"class HasPosition' (i :: Nat) s a | s i -> a where position' :: VL.Lens s s a a",101,102,2025-11-07 11:49:01.035732,2025-11-07 11:49:01.035732 generic-lens,unknown,Data.Generics.Product.Positions,HasPosition0,src/Data/Generics/Product/Positions.hs:108:7-18,"class HasPosition0 (i :: Nat) s t a b where position0 :: VL.Lens s t a b",108,109,2025-11-07 11:49:01.035737,2025-11-07 11:49:01.035737 generic-optics,unknown,Bifunctor,Bifunctor,test/Bifunctor.hs:40:7-15,"class Bifunctor p where bimap :: (a -> c) -> (b -> d) -> p a b -> p c d",40,41,2025-11-07 11:49:03.563905,2025-11-07 11:49:03.563905 generic-lens,unknown,Data.Generics.Product.Fields,HasField,src/Data/Generics/Product/Fields.hs:79:7-14,"class HasField (field :: Symbol) s t a b | s field -> a, t field -> b, s field b -> t, t field a -> s where field :: VL.Lens s t a b",79,111,2025-11-07 11:49:01.035743,2025-11-07 11:49:01.035743 generic-lens,unknown,Data.Generics.Product.Fields,HasField_,src/Data/Generics/Product/Fields.hs:124:7-15,"class HasField_ (field :: Symbol) s t a b where field_ :: VL.Lens s t a b",124,125,2025-11-07 11:49:01.035751,2025-11-07 11:49:01.035751 generic-lens,unknown,Data.Generics.Product.Fields,HasField',src/Data/Generics/Product/Fields.hs:127:7-15,"class HasField' (field :: Symbol) s a | s field -> a where field' :: VL.Lens s s a a",127,128,2025-11-07 11:49:01.035757,2025-11-07 11:49:01.035757 generic-lens,unknown,Data.Generics.Product.Fields,HasField0,src/Data/Generics/Product/Fields.hs:134:7-15,"class HasField0 (field :: Symbol) s t a b where field0 :: VL.Lens s t a b",134,135,2025-11-07 11:49:01.035763,2025-11-07 11:49:01.035763 generic-lens,unknown,Data.Generics.Sum.Typed,AsType,src/Data/Generics/Sum/Typed.hs:68:7-12,"class AsType a s where _Typed :: Prism' s a _Typed = prism injectTyped (\ i -> maybe (Left i) Right (projectTyped i)) {-# INLINE _Typed #-} injectTyped :: a -> s injectTyped = build _Typed projectTyped :: s -> Maybe a projectTyped = either (const Nothing) Just . match _Typed {-# MINIMAL (injectTyped, projectTyped) | _Typed #-}",68,98,2025-11-07 11:49:01.035768,2025-11-07 11:49:01.035768 generic-lens,unknown,Data.Generics.Sum.Constructors,AsConstructor,src/Data/Generics/Sum/Constructors.hs:80:7-19,"class AsConstructor (ctor :: Symbol) s t a b | ctor s -> a, ctor t -> b where _Ctor :: Prism s t a b",80,103,2025-11-07 11:49:01.035776,2025-11-07 11:49:01.035776 generic-lens,unknown,Data.Generics.Sum.Constructors,AsConstructor_,src/Data/Generics/Sum/Constructors.hs:111:7-20,"class AsConstructor_ (ctor :: Symbol) s t a b where _Ctor_ :: Prism s t a b",111,112,2025-11-07 11:49:01.035782,2025-11-07 11:49:01.035782 generic-lens,unknown,Data.Generics.Sum.Constructors,AsConstructor',src/Data/Generics/Sum/Constructors.hs:114:7-20,"class AsConstructor' (ctor :: Symbol) s a | ctor s -> a where _Ctor' :: Prism s s a a",114,115,2025-11-07 11:49:01.035788,2025-11-07 11:49:01.035788 generic-lens,unknown,Data.Generics.Sum.Constructors,AsConstructor0,src/Data/Generics/Sum/Constructors.hs:121:7-20,"class AsConstructor0 (ctor :: Symbol) s t a b where _Ctor0 :: Prism s t a b",121,122,2025-11-07 11:49:01.035793,2025-11-07 11:49:01.035793 generic-lens,unknown,Data.Generics.Sum.Subtype,AsSubtype,src/Data/Generics/Sum/Subtype.hs:78:7-15,"class AsSubtype sub sup where _Sub :: Prism' sup sub _Sub = prism injectSub (\ i -> maybe (Left i) Right (projectSub i)) {-# INLINE _Sub #-} injectSub :: sub -> sup injectSub = build (_Sub @sub @sup) projectSub :: sup -> Maybe sub projectSub = either (const Nothing) Just . match (_Sub @sub @sup) {-# MINIMAL (injectSub, projectSub) | _Sub #-}",78,105,2025-11-07 11:49:01.035799,2025-11-07 11:49:01.035799 generic-lens,unknown,Data.Generics.Sum.Any,AsAny,src/Data/Generics/Sum/Any.hs:65:7-11,"class AsAny sel a s | s sel -> a where _As :: Prism s s a a",65,90,2025-11-07 11:49:01.035807,2025-11-07 11:49:01.035807 generic-lens-core,unknown,Data.Generics.Internal.GenericN,GenericN,src/Data/Generics/Internal/GenericN.hs:50:8-15,"class (Coercible (Rep a) (RepN a), Generic a) => GenericN (a :: Type) where type RepN (a :: Type) :: Type -> Type type RepN a = Rep (Indexed a 0) toN :: RepN a x -> a fromN :: a -> RepN a x",47,54,2025-11-07 11:49:02.308845,2025-11-07 11:49:02.308845 generic-lens-core,unknown,Data.Generics.Internal.Wrapped,GWrapped,src/Data/Generics/Internal/Wrapped.hs:48:7-14,"class GWrapped s t a b | s -> a, t -> b, s b -> t, t a -> s where gWrapped :: Iso (s x) (t x) a b",48,49,2025-11-07 11:49:02.308863,2025-11-07 11:49:02.308863 generic-lens-core,unknown,Data.Generics.Internal.Families.Changing,UnifyHead,src/Data/Generics/Internal/Families/Changing.hs:135:7-15,class UnifyHead (a :: k) (b :: k),135,135,2025-11-07 11:49:02.308870,2025-11-07 11:49:02.308870 generic-lens-core,unknown,Data.Generics.Product.Internal.Types,HasTypes,src/Data/Generics/Product/Internal/Types.hs:147:7-14,"class HasTypes s a where types_ :: Traversal' s a types_ _ = pure {-# INLINE types_ #-}",147,151,2025-11-07 11:49:02.308876,2025-11-07 11:49:02.308876 generic-lens-core,unknown,Data.Generics.Product.Internal.Types,HasTypesUsing,src/Data/Generics/Product/Internal/Types.hs:179:7-19,"class HasTypesUsing (ch :: Type) s t a b where typesUsing_ :: Traversal s t a b",179,180,2025-11-07 11:49:02.308882,2025-11-07 11:49:02.308882 generic-lens-core,unknown,Data.Generics.Product.Internal.Types,HasTypesCustom,src/Data/Generics/Product/Internal/Types.hs:201:7-20,"class HasTypesCustom (ch :: Type) s t a b where typesCustom :: Traversal s t a b",201,207,2025-11-07 11:49:02.308888,2025-11-07 11:49:02.308888 generic-lens-core,unknown,Data.Generics.Product.Internal.Types,HasTypesOpt,src/Data/Generics/Product/Internal/Types.hs:228:7-17,"class HasTypesOpt (ch :: Type) (p :: Bool) s t a b where typesOpt :: Traversal s t a b",228,229,2025-11-07 11:49:02.308894,2025-11-07 11:49:02.308894 generic-lens-core,unknown,Data.Generics.Product.Internal.Types,GHasTypes,src/Data/Generics/Product/Internal/Types.hs:240:7-15,"class GHasTypes ch s t a b where gtypes_ :: Traversal (s x) (t x) a b",240,241,2025-11-07 11:49:02.308900,2025-11-07 11:49:02.308900 generic-lens-core,unknown,Data.Generics.Product.Internal.Subtype,GUpcast,src/Data/Generics/Product/Internal/Subtype.hs:89:7-13,"class GUpcast (sub :: Type -> Type) (sup :: Type -> Type) where gupcast :: sub p -> sup p",89,90,2025-11-07 11:49:02.308906,2025-11-07 11:49:02.308906 generic-lens-core,unknown,Data.Generics.Product.Internal.Subtype,GSmash,src/Data/Generics/Product/Internal/Subtype.hs:110:7-12,"class GSmash sub sup where gsmash :: sup p -> sub p -> sub p",110,111,2025-11-07 11:49:02.308911,2025-11-07 11:49:02.308911 generic-lens-core,unknown,Data.Generics.Product.Internal.Subtype,GSmashLeaf,src/Data/Generics/Product/Internal/Subtype.hs:129:7-16,"class GSmashLeaf sub sup (w :: Maybe Type) where gsmashLeaf :: sup p -> sub p -> sub p",129,130,2025-11-07 11:49:02.308917,2025-11-07 11:49:02.308917 generic-lens-core,unknown,Data.Generics.Product.Internal.HList,Elem,src/Data/Generics/Product/Internal/HList.hs:70:7-10,"class Elem (as :: [(k, Type)]) (key :: k) (i :: Nat) a | as key -> i a",70,70,2025-11-07 11:49:02.308923,2025-11-07 11:49:02.308923 generic-lens-core,unknown,Data.Generics.Product.Internal.HList,GIsList,src/Data/Generics/Product/Internal/HList.hs:74:7-13,"class GIsList (f :: Type -> Type) (g :: Type -> Type) (as :: [Type]) (bs :: [Type]) | f -> as, g -> bs, bs f -> g, as g -> f where glist :: Iso (f x) (g x) (HList as) (HList bs)",74,80,2025-11-07 11:49:02.308929,2025-11-07 11:49:02.308929 generic-optics,unknown,Test40,MyClass,test/Test40.hs:12:7-13,"class MyClass a where data AssocData a",12,13,2025-11-07 11:49:03.563915,2025-11-07 11:49:03.563915 generic-optics,unknown,Test25,Default,test/Test25.hs:18:7-13,"class Default a where def :: a",18,19,2025-11-07 11:49:03.563922,2025-11-07 11:49:03.563922 generic-optics,unknown,Data.Generics.Wrapped,Wrapped,src/Data/Generics/Wrapped.hs:54:7-13,"class Wrapped s t a b | s -> a, t -> b where wrappedIso :: Iso s t a b",54,56,2025-11-07 11:49:03.563927,2025-11-07 11:49:03.563927 hasbolt,unknown,Hex,Hex,test/Hex.hs:21:7-9,"class Hex t where hex :: t -> t unhex :: MonadFail m => t -> m t",21,25,2025-11-07 11:49:59.187770,2025-11-07 11:49:59.187770 generic-lens-core,unknown,Data.Generics.Product.Internal.HList,Appending,src/Data/Generics/Product/Internal/HList.hs:107:7-15,"class Appending as bs cs as' bs' cs' | as bs cs cs' -> as' bs', as' bs' cs cs' -> as bs, as bs -> cs, as' bs' -> cs' where appending :: Iso (HList as, HList bs) (HList as', HList bs') (HList cs) (HList cs')",107,113,2025-11-07 11:49:02.308938,2025-11-07 11:49:02.308938 generic-lens-core,unknown,Data.Generics.Product.Internal.HList,IndexList,src/Data/Generics/Product/Internal/HList.hs:136:7-15,"class IndexList (i :: Nat) as bs a b | i as -> a, i bs -> b, i as b -> bs, i bs a -> as where point :: Lens (HList as) (HList bs) a b",136,137,2025-11-07 11:49:02.308948,2025-11-07 11:49:02.308948 generic-lens-core,unknown,Data.Generics.Product.Internal.HList,ListTuple,src/Data/Generics/Product/Internal/HList.hs:157:7-15,"class ListTuple (tuple :: Type) (tuple' :: Type) (as :: [Type]) (bs :: [Type]) | as -> tuple, bs -> tuple' where tupled :: Iso (HList as) (HList bs) tuple tuple' tupled = iso (listToTuple @tuple @tuple' @as @bs) (tupleToList @tuple @tuple' @as @bs) {-# INLINE tupled #-} tupleToList :: tuple' -> HList bs listToTuple :: HList as -> tuple",157,163,2025-11-07 11:49:02.308956,2025-11-07 11:49:02.308956 generic-lens-core,unknown,Data.Generics.Product.Internal.Positions,Context,src/Data/Generics/Product/Internal/Positions.hs:68:7-13,"class Context (i :: Nat) s t a b | s i -> a, t i -> b, s i b -> t, t i a -> s",68,68,2025-11-07 11:49:02.308965,2025-11-07 11:49:02.308965 generic-lens-core,unknown,Data.Generics.Product.Internal.GLens,GLens,src/Data/Generics/Product/Internal/GLens.hs:49:7-11,"class GLens (pred :: Pred) (s :: Type -> Type) (t :: Type -> Type) a b | s pred -> a, t pred -> b where glens :: Lens (s x) (t x) a b",49,50,2025-11-07 11:49:02.308972,2025-11-07 11:49:02.308972 generic-lens-core,unknown,Data.Generics.Product.Internal.GLens,GProductLens,src/Data/Generics/Product/Internal/GLens.hs:72:7-18,"class GProductLens (left :: Maybe Type) (pred :: Pred) l r l' r' a b | pred l r -> a, pred l' r' -> b where gproductLens :: Lens ((l :*: r) x) ((l' :*: r') x) a b",72,73,2025-11-07 11:49:02.308978,2025-11-07 11:49:02.308978 generic-lens-core,unknown,Data.Generics.Product.Internal.Fields,Context,src/Data/Generics/Product/Internal/Fields.hs:34:7-13,"class Context (field :: Symbol) s t a b | s field -> a, t field -> b, s field b -> t, t field a -> s",34,34,2025-11-07 11:49:02.308987,2025-11-07 11:49:02.308987 generic-lens-core,unknown,Data.Generics.Sum.Internal.Typed,GAsType,src/Data/Generics/Sum/Internal/Typed.hs:81:7-13,"class GAsType (f :: Type -> Type) (as :: Type) where _GTyped :: Prism (f x) (f x) as as",81,82,2025-11-07 11:49:02.308993,2025-11-07 11:49:02.308993 generic-lens-core,unknown,Data.Generics.Sum.Internal.Typed,GSumAsType,src/Data/Generics/Sum/Internal/Typed.hs:99:7-16,"class GSumAsType (contains :: Bool) l r (a :: Type) where _GSumTyped :: Prism ((l :+: r) x) ((l :+: r) x) a a",99,100,2025-11-07 11:49:02.308998,2025-11-07 11:49:02.308998 generic-lens-core,unknown,Data.Generics.Sum.Internal.Constructors,Context,src/Data/Generics/Sum/Internal/Constructors.hs:60:7-13,"class Context (ctor :: Symbol) s t a b | ctor s -> a, ctor t -> b",60,60,2025-11-07 11:49:02.309005,2025-11-07 11:49:02.309005 generic-lens-core,unknown,Data.Generics.Sum.Internal.Constructors,Context_,src/Data/Generics/Sum/Internal/Constructors.hs:71:7-14,class Context_ (ctor :: Symbol) s t a b,71,71,2025-11-07 11:49:02.309054,2025-11-07 11:49:02.309054 generic-lens-core,unknown,Data.Generics.Sum.Internal.Constructors,GAsConstructor,src/Data/Generics/Sum/Internal/Constructors.hs:108:7-20,"class GAsConstructor (ctor :: Symbol) s t a b | ctor s -> a, ctor t -> b where _GCtor :: Prism (s x) (t x) a b",108,109,2025-11-07 11:49:02.309060,2025-11-07 11:49:02.309060 generic-lens-core,unknown,Data.Generics.Sum.Internal.Constructors,GSumAsConstructor,src/Data/Generics/Sum/Internal/Constructors.hs:129:7-23,"class GSumAsConstructor (ctor :: Symbol) (contains :: Bool) l r l' r' a b | ctor l r -> a, ctor l' r' -> b where _GSumCtor :: Prism ((l :+: r) x) ((l' :+: r') x) a b",129,130,2025-11-07 11:49:02.309067,2025-11-07 11:49:02.309067 generic-lens-core,unknown,Data.Generics.Sum.Internal.Subtype,GAsSubtype,src/Data/Generics/Sum/Internal/Subtype.hs:57:7-16,"class GAsSubtype (subf :: Type -> Type) (supf :: Type -> Type) where _GSub :: Prism' (supf x) (subf x)",57,58,2025-11-07 11:49:02.309078,2025-11-07 11:49:02.309078 generic-lens-core,unknown,Data.Generics.Sum.Internal.Subtype,GSplash,src/Data/Generics/Sum/Internal/Subtype.hs:69:7-13,"class GSplash (sub :: Type -> Type) (sup :: Type -> Type) where _GSplash :: sub x -> sup x",69,70,2025-11-07 11:49:02.309084,2025-11-07 11:49:02.309084 generic-lens-core,unknown,Data.Generics.Sum.Internal.Subtype,GDowncast,src/Data/Generics/Sum/Internal/Subtype.hs:91:7-15,"class GDowncast sub sup where _GDowncast :: sup x -> Either (sup x) (sub x)",91,92,2025-11-07 11:49:02.309089,2025-11-07 11:49:02.309089 generic-lens-core,unknown,Data.Generics.Sum.Internal.Subtype,GDowncastC,src/Data/Generics/Sum/Internal/Subtype.hs:118:7-16,"class GDowncastC (contains :: Bool) sub sup where _GDowncastC :: sup x -> Either (sup x) (sub x)",118,119,2025-11-07 11:49:02.309095,2025-11-07 11:49:02.309095 generic-optics,unknown,Data.Generics.Product.Typed,HasType,src/Data/Generics/Product/Typed.hs:63:7-13,"class HasType a s where typed :: Lens s s a a typed = lens (getTyped @a) (flip (setTyped @a)) {-# INLINE typed #-} getTyped :: s -> a getTyped s = s ^. typed @a setTyped :: a -> s -> s setTyped = set (typed @a) {-# MINIMAL typed | setTyped, getTyped #-}",63,100,2025-11-07 11:49:03.563933,2025-11-07 11:49:03.563933 generic-optics,unknown,Data.Generics.Product.Subtype,Subtype,src/Data/Generics/Product/Subtype.hs:75:7-13,"class Subtype sup sub where super :: Lens sub sub sup sup super = lens upcast (flip smash) {-# INLINE super #-} upcast :: sub -> sup upcast s = s ^. super @sup {-# INLINE upcast #-} smash :: sup -> sub -> sub smash = set (super @sup) {-# INLINE smash #-} {-# MINIMAL super | smash, upcast #-}",75,112,2025-11-07 11:49:03.563941,2025-11-07 11:49:03.563941 generic-optics,unknown,Data.Generics.Product.Param,HasParam,src/Data/Generics/Product/Param.hs:45:7-14,"class HasParam (p :: Nat) s t a b | p t a -> s, p s b -> t, p s -> a, p t -> b where param :: Traversal s t a b",45,46,2025-11-07 11:49:03.563949,2025-11-07 11:49:03.563949 generic-optics,unknown,Data.Generics.Product.HList,IsList,src/Data/Generics/Product/HList.hs:36:7-12,"class IsList (f :: Type) (g :: Type) (as :: [Type]) (bs :: [Type]) | f -> as, g -> bs where list :: Iso f g (Core.HList as) (Core.HList bs)",36,41,2025-11-07 11:49:03.563956,2025-11-07 11:49:03.563956 generic-optics,unknown,Data.Generics.Product.Any,HasAny,src/Data/Generics/Product/Any.hs:57:7-12,"class HasAny sel s t a b | s sel -> a where the :: Lens s t a b",57,70,2025-11-07 11:49:03.563962,2025-11-07 11:49:03.563962 generic-optics,unknown,Data.Generics.Product.Positions,HasPosition,src/Data/Generics/Product/Positions.hs:74:7-17,"class HasPosition (i :: Nat) s t a b | s i -> a, t i -> b, s i b -> t, t i a -> s where position :: Lens s t a b",74,88,2025-11-07 11:49:03.563968,2025-11-07 11:49:03.563968 generic-optics,unknown,Data.Generics.Product.Positions,HasPosition_,src/Data/Generics/Product/Positions.hs:90:7-18,"class HasPosition_ (i :: Nat) s t a b where position_ :: Lens s t a b",90,91,2025-11-07 11:49:03.563975,2025-11-07 11:49:03.563975 generic-optics,unknown,Data.Generics.Product.Positions,HasPosition',src/Data/Generics/Product/Positions.hs:99:7-18,"class HasPosition' (i :: Nat) s a | s i -> a where position' :: Lens s s a a",99,100,2025-11-07 11:49:03.563981,2025-11-07 11:49:03.563981 generic-optics,unknown,Data.Generics.Product.Positions,HasPosition0,src/Data/Generics/Product/Positions.hs:106:7-18,"class HasPosition0 (i :: Nat) s t a b where position0 :: Lens s t a b",106,107,2025-11-07 11:49:03.563986,2025-11-07 11:49:03.563986 generic-optics,unknown,Data.Generics.Product.Fields,HasField,src/Data/Generics/Product/Fields.hs:78:7-14,"class HasField (field :: Symbol) s t a b | s field -> a, t field -> b, s field b -> t, t field a -> s where field :: Lens s t a b",78,109,2025-11-07 11:49:03.563992,2025-11-07 11:49:03.563992 generic-optics,unknown,Data.Generics.Product.Fields,HasField_,src/Data/Generics/Product/Fields.hs:122:7-15,"class HasField_ (field :: Symbol) s t a b where field_ :: Lens s t a b",122,123,2025-11-07 11:49:03.564000,2025-11-07 11:49:03.564000 generic-optics,unknown,Data.Generics.Product.Fields,HasField',src/Data/Generics/Product/Fields.hs:125:7-15,"class HasField' (field :: Symbol) s a | s field -> a where field' :: Lens s s a a",125,126,2025-11-07 11:49:03.564006,2025-11-07 11:49:03.564006 generic-optics,unknown,Data.Generics.Product.Fields,HasField0,src/Data/Generics/Product/Fields.hs:132:7-15,"class HasField0 (field :: Symbol) s t a b where field0 :: Lens s t a b",132,133,2025-11-07 11:49:03.564011,2025-11-07 11:49:03.564011 generic-optics,unknown,Data.Generics.Sum.Typed,AsType,src/Data/Generics/Sum/Typed.hs:68:7-12,"class AsType a s where _Typed :: Prism' s a _Typed = prism injectTyped (\ i -> maybe (Left i) Right (projectTyped i)) {-# INLINE _Typed #-} injectTyped :: a -> s injectTyped = review _Typed projectTyped :: s -> Maybe a projectTyped = either (const Nothing) Just . matching _Typed {-# MINIMAL (injectTyped, projectTyped) | _Typed #-}",68,98,2025-11-07 11:49:03.564017,2025-11-07 11:49:03.564017 generic-optics,unknown,Data.Generics.Sum.Constructors,AsConstructor,src/Data/Generics/Sum/Constructors.hs:80:7-19,"class AsConstructor (ctor :: Symbol) s t a b | ctor s -> a, ctor t -> b where _Ctor :: Prism s t a b",80,102,2025-11-07 11:49:03.564025,2025-11-07 11:49:03.564025 generic-optics,unknown,Data.Generics.Sum.Constructors,AsConstructor_,src/Data/Generics/Sum/Constructors.hs:110:7-20,"class AsConstructor_ (ctor :: Symbol) s t a b where _Ctor_ :: Prism s t a b",110,111,2025-11-07 11:49:03.564032,2025-11-07 11:49:03.564032 generic-optics,unknown,Data.Generics.Sum.Constructors,AsConstructor',src/Data/Generics/Sum/Constructors.hs:113:7-20,"class AsConstructor' (ctor :: Symbol) s a | ctor s -> a where _Ctor' :: Prism s s a a",113,114,2025-11-07 11:49:03.564037,2025-11-07 11:49:03.564037 generic-optics,unknown,Data.Generics.Sum.Constructors,AsConstructor0,src/Data/Generics/Sum/Constructors.hs:120:7-20,"class AsConstructor0 (ctor :: Symbol) s t a b where _Ctor0 :: Prism s t a b",120,121,2025-11-07 11:49:03.564043,2025-11-07 11:49:03.564043 generic-optics,unknown,Data.Generics.Sum.Subtype,AsSubtype,src/Data/Generics/Sum/Subtype.hs:78:7-15,"class AsSubtype sub sup where _Sub :: Prism' sup sub _Sub = prism injectSub (\ i -> maybe (Left i) Right (projectSub i)) {-# INLINE _Sub #-} injectSub :: sub -> sup injectSub = review (_Sub @sub @sup) projectSub :: sup -> Maybe sub projectSub = either (const Nothing) Just . matching (_Sub @sub @sup) {-# MINIMAL (injectSub, projectSub) | _Sub #-}",78,105,2025-11-07 11:49:03.564049,2025-11-07 11:49:03.564049 generic-optics,unknown,Data.Generics.Sum.Any,AsAny,src/Data/Generics/Sum/Any.hs:65:7-11,"class AsAny sel a s | s sel -> a where _As :: Prism s s a a",65,89,2025-11-07 11:49:03.564057,2025-11-07 11:49:03.564057 generic-random,unknown,Generic.Random.DerivingVia,TypeLevelWeights,src/Generic/Random/DerivingVia.hs:284:7-22,"class TypeLevelWeights weights a where typeLevelWeightsBuilder :: (a, Int)",284,285,2025-11-07 11:49:04.818352,2025-11-07 11:49:04.818352 generic-random,unknown,Generic.Random.DerivingVia,TypeLevelGenList,src/Generic/Random/DerivingVia.hs:318:7-22,"class TypeLevelGenList a where type TypeLevelGenList' a :: Type toGenList :: Proxy a -> TypeLevelGenList' a",318,320,2025-11-07 11:49:04.818369,2025-11-07 11:49:04.818369 generic-random,unknown,Generic.Random.DerivingVia,TypeLevelOpts,src/Generic/Random/DerivingVia.hs:332:7-19,"class TypeLevelOpts a where type TypeLevelOpts' a :: Type toOpts :: Proxy a -> TypeLevelOpts' a",332,334,2025-11-07 11:49:04.818379,2025-11-07 11:49:04.818379 generic-random,unknown,Generic.Random.Internal.Generic,WeightBuilder',src/Generic/Random/Internal/Generic.hs:213:7-20,"class WeightBuilder' w where (%) :: (c ~ First' w) => W c -> Prec' w -> w",213,216,2025-11-07 11:49:04.818386,2025-11-07 11:49:04.818386 generic-random,unknown,Generic.Random.Internal.Generic,WeightBuilder,src/Generic/Random/Internal/Generic.hs:224:7-19,"class WeightBuilder a where type Prec a r (%.) :: (c ~ First a) => W c -> Prec a r -> (a, Int, r)",224,227,2025-11-07 11:49:04.818392,2025-11-07 11:49:04.818392 generic-random,unknown,Generic.Random.Internal.Generic,UniformWeight,src/Generic/Random/Internal/Generic.hs:245:7-19,"class UniformWeight a where uniformWeight :: (a, Int)",245,246,2025-11-07 11:49:04.818398,2025-11-07 11:49:04.818398 generic-random,unknown,Generic.Random.Internal.Generic,UniformWeight_,src/Generic/Random/Internal/Generic.hs:262:37-50,class UniformWeight (Weights_ f) => UniformWeight_ f,262,262,2025-11-07 11:49:04.818404,2025-11-07 11:49:04.818404 generic-random,unknown,Generic.Random.Internal.Generic,GUniformWeight,src/Generic/Random/Internal/Generic.hs:266:33-46,class UniformWeight_ (Rep a) => GUniformWeight a,266,266,2025-11-07 11:49:04.818410,2025-11-07 11:49:04.818410 generic-random,unknown,Generic.Random.Internal.Generic,HasGenerators,src/Generic/Random/Internal/Generic.hs:422:7-19,"class HasGenerators opts where generators :: opts -> GeneratorsOf opts",422,423,2025-11-07 11:49:04.818415,2025-11-07 11:49:04.818415 generic-random,unknown,Generic.Random.Internal.Generic,GA,src/Generic/Random/Internal/Generic.hs:515:7-8,"class GA opts f where ga :: opts -> Weights_ f -> Int -> Gen (f p)",515,516,2025-11-07 11:49:04.818420,2025-11-07 11:49:04.818420 generic-random,unknown,Generic.Random.Internal.Generic,GArbitrary,src/Generic/Random/Internal/Generic.hs:519:39-48,"class (Generic a, GA opts (Rep a)) => GArbitrary opts a",519,519,2025-11-07 11:49:04.818426,2025-11-07 11:49:04.818426 generic-random,unknown,Generic.Random.Internal.Generic,GASum,src/Generic/Random/Internal/Generic.hs:540:7-11,"class GASum opts f where gaSum :: opts -> Int -> Weights_ f -> Gen (f p)",540,541,2025-11-07 11:49:04.818431,2025-11-07 11:49:04.818431 generic-random,unknown,Generic.Random.Internal.Generic,GAProduct,src/Generic/Random/Internal/Generic.hs:554:7-15,"class GAProduct (s :: Sizing) (c :: Maybe Symbol) opts f where gaProduct :: proxys '(s, c) -> opts -> Gen (f p)",554,555,2025-11-07 11:49:04.818437,2025-11-07 11:49:04.818437 generic-random,unknown,Generic.Random.Internal.Generic,GAProduct',src/Generic/Random/Internal/Generic.hs:577:7-16,"class GAProduct' (c :: Maybe Symbol) (i :: Nat) opts f where gaProduct' :: proxy '(c, i) -> opts -> Gen (f p)",577,578,2025-11-07 11:49:04.818443,2025-11-07 11:49:04.818443 generic-random,unknown,Generic.Random.Internal.Generic,FindGen,src/Generic/Random/Internal/Generic.hs:625:7-13,"class FindGen (i :: AInstr) (s :: AStore) (g :: Type) (gs :: Type) (a :: Type) where findGen :: (Proxy i, Proxy s, FullGenListOf s) -> g -> gs -> Gen a",625,626,2025-11-07 11:49:04.818449,2025-11-07 11:49:04.818449 generic-random,unknown,Generic.Random.Internal.BaseCase,BaseCaseSearch,src/Generic/Random/Internal/BaseCase.hs:79:7-20,"class BaseCaseSearch (a :: Type) (z :: Nat) (y :: Maybe Nat) (e :: Type) where baseCaseSearch :: prox y -> proxy '(z, e) -> IfM y Gen Proxy a",79,80,2025-11-07 11:49:04.818458,2025-11-07 11:49:04.818458 generic-random,unknown,Generic.Random.Internal.BaseCase,BaseCaseSearching_,src/Generic/Random/Internal/BaseCase.hs:120:7-24,"class BaseCaseSearching_ a z y where baseCaseSearching_ :: proxy y -> proxy2 '(z, a) -> IfM y Gen Proxy a -> Gen a",120,121,2025-11-07 11:49:04.818465,2025-11-07 11:49:04.818465 generic-random,unknown,Generic.Random.Internal.BaseCase,BaseCaseSearching,src/Generic/Random/Internal/BaseCase.hs:130:7-23,"class BaseCaseSearching a z where baseCaseSearching :: proxy '(z, a) -> Gen a",130,131,2025-11-07 11:49:04.818471,2025-11-07 11:49:04.818471 generic-random,unknown,Generic.Random.Internal.BaseCase,BaseCase,src/Generic/Random/Internal/BaseCase.hs:139:7-14,"class BaseCase a where baseCase :: Gen a",139,141,2025-11-07 11:49:04.818477,2025-11-07 11:49:04.818477 generic-random,unknown,Generic.Random.Internal.BaseCase,GBCS,src/Generic/Random/Internal/BaseCase.hs:184:6-9,"class Alternative (IfM y Weighted Proxy) => GBCS (f :: k -> Type) (z :: Nat) (y :: Maybe Nat) (e :: Type) where gbcs :: prox y -> proxy '(z, e) -> IfM y Weighted Proxy (f p)",183,185,2025-11-07 11:49:04.818482,2025-11-07 11:49:04.818482 generic-random,unknown,Generic.Random.Internal.BaseCase,GBCSSum,src/Generic/Random/Internal/BaseCase.hs:202:55-61,"class Alternative (IfM (yf ||? yg) Weighted Proxy) => GBCSSum f g z e yf yg where gbcsSum :: prox '(yf, yg) -> proxy '(z, e) -> IfM yf Weighted Proxy (f p) -> IfM yg Weighted Proxy (g p) -> IfM (yf ||? yg) Weighted Proxy ((f :+: g) p)",202,208,2025-11-07 11:49:04.818489,2025-11-07 11:49:04.818489 generic-random,unknown,Generic.Random.Internal.BaseCase,GBCSSumCompare,src/Generic/Random/Internal/BaseCase.hs:223:7-20,"class GBCSSumCompare f g z e o where gbcsSumCompare :: proxy0 o -> proxy '(z, e) -> Weighted (f p) -> Weighted (g p) -> Weighted ((f :+: g) p)",223,229,2025-11-07 11:49:04.818497,2025-11-07 11:49:04.818497 generic-random,unknown,Generic.Random.Internal.BaseCase,GBCSProduct,src/Generic/Random/Internal/BaseCase.hs:252:55-65,"class Alternative (IfM (yf &&? yg) Weighted Proxy) => GBCSProduct f g z e yf yg where gbcsProduct :: prox '(yf, yg) -> proxy '(z, e) -> IfM yf Weighted Proxy (f p) -> IfM yg Weighted Proxy (g p) -> IfM (yf &&? yg) Weighted Proxy ((f :*: g) p)",252,258,2025-11-07 11:49:04.818504,2025-11-07 11:49:04.818504 generic-random,unknown,Generic.Random.Internal.BaseCase,IsMaybe,src/Generic/Random/Internal/BaseCase.hs:266:7-13,"class IsMaybe b where ifMmap :: proxy b -> (c a -> c' a') -> (d a -> d' a') -> IfM b c d a -> IfM b c' d' a' ifM :: proxy b -> c a -> d a -> IfM b c d a",266,268,2025-11-07 11:49:04.818512,2025-11-07 11:49:04.818512 generic-random,unknown,Generic.Random.Internal.BaseCase,GBaseCaseSearch,src/Generic/Random/Internal/BaseCase.hs:311:7-21,"class GBaseCaseSearch a z y e where gBaseCaseSearch :: prox y -> proxy '(z, e) -> IfM y Gen Proxy a",311,312,2025-11-07 11:49:04.818519,2025-11-07 11:49:04.818519 generics-sop,unknown,HTransExample,IsTupleTypeOf,test/HTransExample.hs:12:7-19,"class IsTupleTypeOf xs y | xs -> y where toTuple :: NP I xs -> y default toTuple :: (Generic y, Code y ~ '[xs]) => NP I xs -> y toTuple = to . SOP . Z",12,15,2025-11-07 11:49:07.352582,2025-11-07 11:49:07.352582 generics-sop,unknown,Generics.SOP.GGP,GFieldInfos,src/Generics/SOP/GGP.hs:87:7-17,"class GFieldInfos (a :: Type -> Type) where gFieldInfos :: proxy a -> NP FieldInfo xs -> NP FieldInfo (ToProductCode a xs)",87,88,2025-11-07 11:49:07.352590,2025-11-07 11:49:07.352590 generics-sop,unknown,Generics.SOP.GGP,GSingleFrom,src/Generics/SOP/GGP.hs:102:7-17,"class GSingleFrom (a :: Type -> Type) where gSingleFrom :: a x -> ToSingleCode a",102,103,2025-11-07 11:49:07.352599,2025-11-07 11:49:07.352599 generics-sop,unknown,Generics.SOP.GGP,GProductFrom,src/Generics/SOP/GGP.hs:108:7-18,"class GProductFrom (a :: Type -> Type) where gProductFrom :: a x -> NP I xs -> NP I (ToProductCode a xs)",108,109,2025-11-07 11:49:07.352604,2025-11-07 11:49:07.352604 generics-sop,unknown,Generics.SOP.GGP,GSingleTo,src/Generics/SOP/GGP.hs:120:7-15,"class GSingleTo (a :: Type -> Type) where gSingleTo :: ToSingleCode a -> a x",120,121,2025-11-07 11:49:07.352610,2025-11-07 11:49:07.352610 generics-sop,unknown,Generics.SOP.GGP,GProductTo,src/Generics/SOP/GGP.hs:126:7-16,"class GProductTo (a :: Type -> Type) where gProductTo :: NP I (ToProductCode a xs) -> (a x -> NP I xs -> r) -> r",126,127,2025-11-07 11:49:07.352616,2025-11-07 11:49:07.352616 generics-sop,unknown,Generics.SOP.GGP,GSumFrom,src/Generics/SOP/GGP.hs:139:7-14,"class GSumFrom (a :: Type -> Type) where gSumFrom :: a x -> proxy xss -> SOP I (ToSumCode a xss) gSumSkip :: proxy a -> SOP I xss -> SOP I (ToSumCode a xss)",139,141,2025-11-07 11:49:07.352623,2025-11-07 11:49:07.352623 generics-sop,unknown,Generics.SOP.GGP,GSumTo,src/Generics/SOP/GGP.hs:164:7-12,"class GSumTo (a :: Type -> Type) where gSumTo :: SOP I (ToSumCode a xss) -> (a x -> r) -> (SOP I xss -> r) -> r",164,165,2025-11-07 11:49:07.352629,2025-11-07 11:49:07.352629 generics-sop,unknown,Generics.SOP.Universe,Generic,src/Generics/SOP/Universe.hs:97:32-38,"class (All SListI (Code a)) => Generic (a :: Type) where type Code a :: [[Type]] type Code a = GCode a from :: a -> Rep a default from :: (GFrom a, GHC.Generic a, Rep a ~ SOP I (GCode a)) => a -> Rep a from = gfrom to :: Rep a -> a default to :: (GTo a, GHC.Generic a, Rep a ~ SOP I (GCode a)) => Rep a -> a to = gto",97,129,2025-11-07 11:49:07.352635,2025-11-07 11:49:07.352635 generics-sop,unknown,Generics.SOP.Universe,HasDatatypeInfo,src/Generics/SOP/Universe.hs:141:20-34,"class Generic a => HasDatatypeInfo a where type DatatypeInfoOf a :: T.DatatypeInfo type DatatypeInfoOf a = GDatatypeInfoOf a datatypeInfo :: proxy a -> DatatypeInfo (Code a) default datatypeInfo :: (GDatatypeInfo a, GCode a ~ Code a) => proxy a -> DatatypeInfo (Code a) datatypeInfo = gdatatypeInfo",141,151,2025-11-07 11:49:07.352643,2025-11-07 11:49:07.352643 generics-sop,unknown,Generics.SOP.Type.Metadata,DemoteDatatypeInfo,src/Generics/SOP/Type/Metadata.hs:128:7-24,"class DemoteDatatypeInfo (x :: DatatypeInfo) (xss :: [[Type]]) where demoteDatatypeInfo :: proxy x -> M.DatatypeInfo xss",128,134,2025-11-07 11:49:07.352652,2025-11-07 11:49:07.352652 generics-sop,unknown,Generics.SOP.Type.Metadata,DemoteConstructorInfos,src/Generics/SOP/Type/Metadata.hs:164:7-28,"class DemoteConstructorInfos (cs :: [ConstructorInfo]) (xss :: [[Type]]) where demoteConstructorInfos :: proxy cs -> NP M.ConstructorInfo xss",164,170,2025-11-07 11:49:07.352660,2025-11-07 11:49:07.352660 generics-sop,unknown,Generics.SOP.Type.Metadata,DemoteConstructorInfo,src/Generics/SOP/Type/Metadata.hs:186:7-27,"class DemoteConstructorInfo (x :: ConstructorInfo) (xs :: [Type]) where demoteConstructorInfo :: proxy x -> M.ConstructorInfo xs",186,192,2025-11-07 11:49:07.352666,2025-11-07 11:49:07.352666 reflection,unknown,T47Spec,ToJSON,tests/T47Spec.hs:58:7-12,"class ToJSON a where toJSON :: a -> Value",58,59,2025-11-07 11:54:03.947310,2025-11-07 11:54:03.947310 generics-sop,unknown,Generics.SOP.Type.Metadata,DemoteStrictnessInfoss,src/Generics/SOP/Type/Metadata.hs:211:7-28,"class DemoteStrictnessInfoss (sss :: [[StrictnessInfo]]) (xss :: [[Type]]) where demoteStrictnessInfoss :: proxy sss -> NP (NP M.StrictnessInfo) xss",211,212,2025-11-07 11:49:07.352672,2025-11-07 11:49:07.352672 generics-sop,unknown,Generics.SOP.Type.Metadata,DemoteStrictnessInfos,src/Generics/SOP/Type/Metadata.hs:224:7-27,"class DemoteStrictnessInfos (ss :: [StrictnessInfo]) (xs :: [Type]) where demoteStrictnessInfos :: proxy ss -> NP M.StrictnessInfo xs",224,225,2025-11-07 11:49:07.352678,2025-11-07 11:49:07.352678 generics-sop,unknown,Generics.SOP.Type.Metadata,DemoteStrictnessInfo,src/Generics/SOP/Type/Metadata.hs:237:7-26,"class DemoteStrictnessInfo (s :: StrictnessInfo) (x :: Type) where demoteStrictnessInfo :: proxy s -> M.StrictnessInfo x",237,238,2025-11-07 11:49:07.352686,2025-11-07 11:49:07.352686 generics-sop,unknown,Generics.SOP.Type.Metadata,DemoteFieldInfos,src/Generics/SOP/Type/Metadata.hs:257:20-35,"class SListI xs => DemoteFieldInfos (fs :: [FieldInfo]) (xs :: [Type]) where demoteFieldInfos :: proxy fs -> NP M.FieldInfo xs",257,263,2025-11-07 11:49:07.352692,2025-11-07 11:49:07.352692 generics-sop,unknown,Generics.SOP.Type.Metadata,DemoteFieldInfo,src/Generics/SOP/Type/Metadata.hs:278:7-21,"class DemoteFieldInfo (x :: FieldInfo) (a :: Type) where demoteFieldInfo :: proxy x -> M.FieldInfo a",278,284,2025-11-07 11:49:07.352701,2025-11-07 11:49:07.352701 generics-sop,unknown,Generics.SOP.Type.Metadata,DemoteAssociativity,src/Generics/SOP/Type/Metadata.hs:294:7-25,"class DemoteAssociativity (a :: Associativity) where demoteAssociativity :: proxy a -> M.Associativity",294,300,2025-11-07 11:49:07.352707,2025-11-07 11:49:07.352707 generics-sop,unknown,Generics.SOP.Type.Metadata,DemoteSourceUnpackedness,src/Generics/SOP/Type/Metadata.hs:316:7-30,"class DemoteSourceUnpackedness (a :: SourceUnpackedness) where demoteSourceUnpackedness :: proxy a -> M.SourceUnpackedness",316,322,2025-11-07 11:49:07.352713,2025-11-07 11:49:07.352713 generics-sop,unknown,Generics.SOP.Type.Metadata,DemoteSourceStrictness,src/Generics/SOP/Type/Metadata.hs:338:7-28,"class DemoteSourceStrictness (a :: SourceStrictness) where demoteSourceStrictness :: proxy a -> M.SourceStrictness",338,344,2025-11-07 11:49:07.352718,2025-11-07 11:49:07.352718 generics-sop,unknown,Generics.SOP.Type.Metadata,DemoteDecidedStrictness,src/Generics/SOP/Type/Metadata.hs:360:7-29,"class DemoteDecidedStrictness (a :: DecidedStrictness) where demoteDecidedStrictness :: proxy a -> M.DecidedStrictness",360,366,2025-11-07 11:49:07.352724,2025-11-07 11:49:07.352724 ghc,unknown,Text.XHtml.Table,HTMLTABLE,libraries/xhtml/Text/XHtml/Table.hs:21:7-15,"class HTMLTABLE ht where cell :: ht -> HtmlTable",21,22,2025-11-07 11:49:39.247455,2025-11-07 11:49:39.247455 ghc,unknown,Text.XHtml.Internals,HTML,libraries/xhtml/Text/XHtml/Internals.hs:78:7-10,"class HTML a where toHtml :: a -> Html toHtmlFromList :: [a] -> Html toHtmlFromList xs = Html (concat [x | (Html x) <- map toHtml xs])",78,82,2025-11-07 11:49:39.247502,2025-11-07 11:49:39.247502 ghc,unknown,Text.XHtml.Internals,ADDATTRS,libraries/xhtml/Text/XHtml/Internals.hs:98:7-14,"class ADDATTRS a where (!) :: a -> [HtmlAttr] -> a",98,99,2025-11-07 11:49:39.247516,2025-11-07 11:49:39.247516 ghc,unknown,Text.XHtml.Internals,CHANGEATTRS,libraries/xhtml/Text/XHtml/Internals.hs:102:7-17,"class CHANGEATTRS a where changeAttrs :: a -> ([HtmlAttr] -> [HtmlAttr]) -> a",102,103,2025-11-07 11:49:39.247522,2025-11-07 11:49:39.247522 ghc,unknown,Data.ByteString.Builder.RealFloat.Internal,Mantissa,libraries/bytestring/Data/ByteString/Builder/RealFloat/Internal.hs:543:37-44,"class (FiniteBits a, Integral a) => Mantissa a where unsafeRaw :: a -> Word# raw :: a -> WORD64 decimalLength :: a -> Int boolToWord :: Bool -> a quotRem10 :: a -> (a, a) quot10 :: a -> a quot100 :: a -> a quotRem100 :: a -> (a, a) quotRem10000 :: a -> (a, a)",543,555,2025-11-07 11:49:39.247532,2025-11-07 11:49:39.247532 ghc,unknown,Data.ByteString.Builder.Prim.Internal,Contravariant,libraries/bytestring/Data/ByteString/Builder/Prim/Internal.hs:82:7-19,"class Contravariant f where contramap :: (b -> a) -> f a -> f b",82,83,2025-11-07 11:49:39.247542,2025-11-07 11:49:39.247542 ghc,unknown,Data.ByteString.Builder.Prim.Internal,Monoidal,libraries/bytestring/Data/ByteString/Builder/Prim/Internal.hs:116:7-14,"class Monoidal f where pair :: f a -> f b -> f (a, b)",116,117,2025-11-07 11:49:39.247552,2025-11-07 11:49:39.247552 ghc,unknown,Language.Haskell.TH.Syntax,Quasi,libraries/template-haskell/Language/Haskell/TH/Syntax.hs:74:35-39,"class (MonadIO m, MonadFail m) => Quasi m where qNewName :: String -> m Name "" Fresh names"" qReport :: Bool -> String -> m () "" Report an error (True) or warning (False) ...but carry on; use 'fail' to stop"" qRecover :: m a "" the error handler"" -> m a "" action which may fail"" -> m a "" Recover from the monadic 'fail'"" qLookupName :: Bool -> String -> m (Maybe Name) qReify :: Name -> m Info qReifyFixity :: Name -> m (Maybe Fixity) qReifyType :: Name -> m Type qReifyInstances :: Name -> [Type] -> m [Dec] qReifyRoles :: Name -> m [Role] qReifyAnnotations :: Data a => AnnLookup -> m [a] qReifyModule :: Module -> m ModuleInfo qReifyConStrictness :: Name -> m [DecidedStrictness] qLocation :: m Loc qRunIO :: IO a -> m a qRunIO = liftIO qAddDependentFile :: FilePath -> m () qAddTempFile :: String -> m FilePath qAddTopDecls :: [Dec] -> m () qAddForeignFilePath :: ForeignSrcLang -> String -> m () qAddModFinalizer :: Q () -> m () qAddCorePlugin :: String -> m () qGetQ :: Typeable a => m (Maybe a) qPutQ :: Typeable a => a -> m () qIsExtEnabled :: Extension -> m Bool qExtsEnabled :: m [Extension] qPutDoc :: DocLoc -> String -> m () qGetDoc :: DocLoc -> m (Maybe String)",74,127,2025-11-07 11:49:39.247559,2025-11-07 11:49:39.247559 ghc,unknown,Language.Haskell.TH.Syntax,Quote,libraries/template-haskell/Language/Haskell/TH/Syntax.hs:270:18-22,"class Monad m => Quote m where newName :: String -> m Name",270,305,2025-11-07 11:49:39.247579,2025-11-07 11:49:39.247579 ghc,unknown,Language.Haskell.TH.Syntax,Lift,libraries/template-haskell/Language/Haskell/TH/Syntax.hs:852:7-10,"class Lift (t :: TYPE r) where lift :: Quote m => t -> m Exp default lift :: (r ~ ('BoxedRep 'Lifted), Quote m) => t -> m Exp lift = unTypeCode . liftTyped liftTyped :: Quote m => t -> Code m t",852,867,2025-11-07 11:49:39.247589,2025-11-07 11:49:39.247589 ghc,unknown,Language.Haskell.TH.Ppr,Ppr,libraries/template-haskell/Language/Haskell/TH/Ppr.hs:41:7-9,"class Ppr a where ppr :: a -> Doc ppr_list :: [a] -> Doc ppr_list = vcat . map ppr",41,44,2025-11-07 11:49:39.247600,2025-11-07 11:49:39.247600 ghc,unknown,Language.Haskell.TH.Ppr,PprFlag,libraries/template-haskell/Language/Haskell/TH/Ppr.hs:881:7-13,"class PprFlag flag where pprTyVarBndr :: (TyVarBndr flag) -> Doc",881,882,2025-11-07 11:49:39.247607,2025-11-07 11:49:39.247607 ghc,unknown,Data.Array.Base,IArray,libraries/array/Data/Array/Base.hs:70:7-12,"class IArray a e where bounds :: Ix i => a i e -> (i, i) numElements :: Ix i => a i e -> Int unsafeArray :: Ix i => (i, i) -> [(Int, e)] -> a i e unsafeAt :: Ix i => a i e -> Int -> e unsafeReplace :: Ix i => a i e -> [(Int, e)] -> a i e unsafeAccum :: Ix i => (e -> e' -> e) -> a i e -> [(Int, e')] -> a i e unsafeAccumArray :: Ix i => (e -> e' -> e) -> e -> (i, i) -> [(Int, e')] -> a i e unsafeReplace arr ies = runST (unsafeReplaceST arr ies >>= unsafeFreeze) unsafeAccum f arr ies = runST (unsafeAccumST f arr ies >>= unsafeFreeze) unsafeAccumArray f e lu ies = runST (unsafeAccumArrayST f e lu ies >>= unsafeFreeze)",70,82,2025-11-07 11:49:39.247613,2025-11-07 11:49:39.247613 ghc,unknown,Control.DeepSeq,NFData2,libraries/deepseq/Control/DeepSeq.hs:415:7-13,"class NFData2 p where liftRnf2 :: (a -> ()) -> (b -> ()) -> p a b -> ()",415,422,2025-11-07 11:49:39.248892,2025-11-07 11:49:39.248892 ghc,unknown,Data.Array.Base,MArray,libraries/array/Data/Array/Base.hs:825:20-25,"class (Monad m) => MArray a e m where getBounds :: Ix i => a i e -> m (i, i) getNumElements :: Ix i => a i e -> m Int newArray :: Ix i => (i, i) -> e -> m (a i e) newArray_ :: Ix i => (i, i) -> m (a i e) unsafeNewArray_ :: Ix i => (i, i) -> m (a i e) unsafeRead :: Ix i => a i e -> Int -> m e unsafeWrite :: Ix i => a i e -> Int -> e -> m () {-# INLINE newArray #-} newArray (l, u) initialValue = do let n = safeRangeSize (l, u) marr <- unsafeNewArray_ (l, u) sequence_ [unsafeWrite marr i initialValue | i <- [0 .. n - 1]] return marr {-# INLINE unsafeNewArray_ #-} unsafeNewArray_ (l, u) = newArray (l, u) arrEleBottom {-# INLINE newArray_ #-} newArray_ (l, u) = newArray (l, u) arrEleBottom",825,863,2025-11-07 11:49:39.247627,2025-11-07 11:49:39.247627 ghc,unknown,GHC.Exts.Heap,HasHeapRep,libraries/ghc-heap/GHC/Exts/Heap.hs:85:7-16,"class HasHeapRep (a :: TYPE rep) where getClosureData :: a "" Closure to decode."" -> IO Closure "" Heap representation of the closure.""",85,91,2025-11-07 11:49:39.247658,2025-11-07 11:49:39.247658 ghc,unknown,GHC.Types,~~,libraries/ghc-prim/GHC/Types.hs:270:9-10,class a ~~ b,270,270,2025-11-07 11:49:39.247664,2025-11-07 11:49:39.247664 ghc,unknown,GHC.Types,~,libraries/ghc-prim/GHC/Types.hs:279:9,class a ~ b,279,279,2025-11-07 11:49:39.247669,2025-11-07 11:49:39.247669 ghc,unknown,GHC.Types,Coercible,libraries/ghc-prim/GHC/Types.hs:331:7-15,class Coercible (a :: k) (b :: k),331,331,2025-11-07 11:49:39.247673,2025-11-07 11:49:39.247673 ghc,unknown,GHC.Classes,IP,libraries/ghc-prim/GHC/Classes.hs:74:7-8,"class IP (x :: Symbol) a | x -> a where ip :: a",74,75,2025-11-07 11:49:39.247679,2025-11-07 11:49:39.247679 ghc,unknown,GHC.Classes,Eq,libraries/ghc-prim/GHC/Classes.hs:139:8-9,"class Eq a where (==), (/=) :: a -> a -> Bool {-# INLINE (/=) #-} {-# INLINE (==) #-} x /= y = not (x == y) x == y = not (x /= y) {-# MINIMAL (==) | (/=) #-}",139,146,2025-11-07 11:49:39.247684,2025-11-07 11:49:39.247684 ghc,unknown,GHC.Classes,Ord,libraries/ghc-prim/GHC/Classes.hs:336:18-20,"class (Eq a) => Ord a where compare :: a -> a -> Ordering (<), (<=), (>), (>=) :: a -> a -> Bool max, min :: a -> a -> a compare x y = if x == y then EQ else if x <= y then LT else GT x < y = case compare x y of LT -> True _ -> False x <= y = case compare x y of GT -> False _ -> True x > y = case compare x y of GT -> True _ -> False x >= y = case compare x y of LT -> False _ -> True max x y = if x <= y then y else x min x y = if x <= y then x else y {-# MINIMAL compare | (<=) #-}",336,357,2025-11-07 11:49:39.247695,2025-11-07 11:49:39.247695 ghc,unknown,GHC.Classes,(%%),libraries/ghc-prim/GHC/Classes.hs:573:7-8,class (%%),573,573,2025-11-07 11:49:39.247828,2025-11-07 11:49:39.247828 ghc,unknown,GHC.Classes,"(%,%)",libraries/ghc-prim/GHC/Classes.hs:574:23-30,"class (c1, c2) => (%,%) c1 c2",574,574,2025-11-07 11:49:39.247835,2025-11-07 11:49:39.247835 ghc,unknown,GHC.Classes,"(%,,%)",libraries/ghc-prim/GHC/Classes.hs:575:23-34,"class (c1, c2, c3) => (%,,%) c1 c2 c3",575,575,2025-11-07 11:49:39.247840,2025-11-07 11:49:39.247840 ghc,unknown,GHC.Classes,"(%,,,%)",libraries/ghc-prim/GHC/Classes.hs:576:27-42,"class (c1, c2, c3, c4) => (%,,,%) c1 c2 c3 c4",576,576,2025-11-07 11:49:39.247846,2025-11-07 11:49:39.247846 ghc,unknown,GHC.Classes,"(%,,,,%)",libraries/ghc-prim/GHC/Classes.hs:577:31-50,"class (c1, c2, c3, c4, c5) => (%,,,,%) c1 c2 c3 c4 c5",577,577,2025-11-07 11:49:39.247851,2025-11-07 11:49:39.247851 ghc,unknown,GHC.Classes,"(%,,,,,%)",libraries/ghc-prim/GHC/Classes.hs:578:35-58,"class (c1, c2, c3, c4, c5, c6) => (%,,,,,%) c1 c2 c3 c4 c5 c6",578,578,2025-11-07 11:49:39.247857,2025-11-07 11:49:39.247857 ghc,unknown,GHC.Classes,"(%,,,,,,%)",libraries/ghc-prim/GHC/Classes.hs:579:39-66,"class (c1, c2, c3, c4, c5, c6, c7) => (%,,,,,,%) c1 c2 c3 c4 c5 c6 c7",579,579,2025-11-07 11:49:39.247862,2025-11-07 11:49:39.247862 ghc,unknown,GHC.Classes,"(%,,,,,,,%)",libraries/ghc-prim/GHC/Classes.hs:580:43-74,"class (c1, c2, c3, c4, c5, c6, c7, c8) => (%,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8",580,580,2025-11-07 11:49:39.247868,2025-11-07 11:49:39.247868 ghc,unknown,GHC.Classes,"(%,,,,,,,,%)",libraries/ghc-prim/GHC/Classes.hs:582:7-42,"class (c1, c2, c3, c4, c5, c6, c7, c8, c9) => (%,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9",581,582,2025-11-07 11:49:39.247874,2025-11-07 11:49:39.247874 ghc,unknown,GHC.Classes,"(%,,,,,,,,,%)",libraries/ghc-prim/GHC/Classes.hs:584:7-47,"class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10) => (%,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10",583,584,2025-11-07 11:49:39.247880,2025-11-07 11:49:39.247880 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,%)",libraries/ghc-prim/GHC/Classes.hs:586:7-52,"class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11) => (%,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11",585,586,2025-11-07 11:49:39.247888,2025-11-07 11:49:39.247888 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,%)",libraries/ghc-prim/GHC/Classes.hs:588:7-57,"class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12) => (%,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12",587,588,2025-11-07 11:49:39.247895,2025-11-07 11:49:39.247895 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,%)",libraries/ghc-prim/GHC/Classes.hs:590:7-62,"class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13) => (%,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13",589,590,2025-11-07 11:49:39.247905,2025-11-07 11:49:39.247905 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,%)",libraries/ghc-prim/GHC/Classes.hs:592:7-67,"class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14) => (%,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14",591,592,2025-11-07 11:49:39.247912,2025-11-07 11:49:39.247912 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,%)",libraries/ghc-prim/GHC/Classes.hs:594:7-72,"class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15) => (%,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15",593,594,2025-11-07 11:49:39.247920,2025-11-07 11:49:39.247920 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,%)",libraries/ghc-prim/GHC/Classes.hs:596:7-77,"class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16) => (%,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16",595,596,2025-11-07 11:49:39.247927,2025-11-07 11:49:39.247927 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(599,7)-(600,11)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17) => (%,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17",597,600,2025-11-07 11:49:39.247937,2025-11-07 11:49:39.247937 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(603,7)-(604,16)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18) => (%,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18",601,604,2025-11-07 11:49:39.247945,2025-11-07 11:49:39.247945 ghc,unknown,GHC.Utils.Logger,ContainsLogger,compiler/GHC/Utils/Logger.hs:471:7-20,"class ContainsLogger t where extractLogger :: t -> Logger",471,472,2025-11-07 11:49:39.250398,2025-11-07 11:49:39.250398 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(607,7)-(608,21)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19) => (%,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19",605,608,2025-11-07 11:49:39.247952,2025-11-07 11:49:39.247952 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(611,7)-(612,26)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20) => (%,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20",609,612,2025-11-07 11:49:39.247965,2025-11-07 11:49:39.247965 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(615,7)-(616,31)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21) => (%,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21",613,616,2025-11-07 11:49:39.247973,2025-11-07 11:49:39.247973 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(619,7)-(620,36)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22) => (%,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22",617,620,2025-11-07 11:49:39.247981,2025-11-07 11:49:39.247981 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(623,7)-(624,41)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23) => (%,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23",621,624,2025-11-07 11:49:39.247990,2025-11-07 11:49:39.247990 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(627,7)-(628,46)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24) => (%,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24",625,628,2025-11-07 11:49:39.247999,2025-11-07 11:49:39.247999 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(631,7)-(632,51)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25) => (%,,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25",629,632,2025-11-07 11:49:39.248048,2025-11-07 11:49:39.248048 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(635,7)-(636,56)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26) => (%,,,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26",633,636,2025-11-07 11:49:39.248058,2025-11-07 11:49:39.248058 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(639,7)-(640,61)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26, c27) => (%,,,,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27",637,640,2025-11-07 11:49:39.248067,2025-11-07 11:49:39.248067 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(643,7)-(644,66)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26, c27, c28) => (%,,,,,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27 c28",641,644,2025-11-07 11:49:39.248080,2025-11-07 11:49:39.248080 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(647,7)-(648,71)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26, c27, c28, c29) => (%,,,,,,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27 c28 c29",645,648,2025-11-07 11:49:39.248092,2025-11-07 11:49:39.248092 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(651,7)-(652,76)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26, c27, c28, c29, c30) => (%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27 c28 c29 c30",649,652,2025-11-07 11:49:39.248102,2025-11-07 11:49:39.248102 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(656,7)-(658,11)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26, c27, c28, c29, c30, c31) => (%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27 c28 c29 c30 c31",653,658,2025-11-07 11:49:39.248115,2025-11-07 11:49:39.248115 ghc,unknown,System.Console.Haskeline.LineState,Save,libraries/haskeline/System/Console/Haskeline/LineState.hs:154:22-25,"class LineState s => Save s where save :: s -> InsertMode restore :: InsertMode -> s",154,156,2025-11-07 11:49:39.248775,2025-11-07 11:49:39.248775 ghc,unknown,System.Console.Haskeline.LineState,Move,libraries/haskeline/System/Console/Haskeline/LineState.hs:164:7-10,"class Move s where goLeft, goRight, moveToStart, moveToEnd :: s -> s",164,165,2025-11-07 11:49:39.248826,2025-11-07 11:49:39.248826 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(662,7)-(664,16)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26, c27, c28, c29, c30, c31, c32) => (%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27 c28 c29 c30 c31 c32",659,664,2025-11-07 11:49:39.248126,2025-11-07 11:49:39.248126 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(668,7)-(670,21)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26, c27, c28, c29, c30, c31, c32, c33) => (%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27 c28 c29 c30 c31 c32 c33",665,670,2025-11-07 11:49:39.248136,2025-11-07 11:49:39.248136 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(674,7)-(676,26)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26, c27, c28, c29, c30, c31, c32, c33, c34) => (%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27 c28 c29 c30 c31 c32 c33 c34",671,676,2025-11-07 11:49:39.248147,2025-11-07 11:49:39.248147 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(680,7)-(682,31)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26, c27, c28, c29, c30, c31, c32, c33, c34, c35) => (%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27 c28 c29 c30 c31 c32 c33 c34 c35",677,682,2025-11-07 11:49:39.248157,2025-11-07 11:49:39.248157 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(686,7)-(688,36)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26, c27, c28, c29, c30, c31, c32, c33, c34, c35, c36) => (%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27 c28 c29 c30 c31 c32 c33 c34 c35 c36",683,688,2025-11-07 11:49:39.248168,2025-11-07 11:49:39.248168 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(692,7)-(694,41)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26, c27, c28, c29, c30, c31, c32, c33, c34, c35, c36, c37) => (%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27 c28 c29 c30 c31 c32 c33 c34 c35 c36 c37",689,694,2025-11-07 11:49:39.248193,2025-11-07 11:49:39.248193 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(698,7)-(700,46)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26, c27, c28, c29, c30, c31, c32, c33, c34, c35, c36, c37, c38) => (%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27 c28 c29 c30 c31 c32 c33 c34 c35 c36 c37 c38",695,700,2025-11-07 11:49:39.248205,2025-11-07 11:49:39.248205 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(704,7)-(706,51)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26, c27, c28, c29, c30, c31, c32, c33, c34, c35, c36, c37, c38, c39) => (%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27 c28 c29 c30 c31 c32 c33 c34 c35 c36 c37 c38 c39",701,706,2025-11-07 11:49:39.248216,2025-11-07 11:49:39.248216 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(710,7)-(712,56)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26, c27, c28, c29, c30, c31, c32, c33, c34, c35, c36, c37, c38, c39, c40) => (%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27 c28 c29 c30 c31 c32 c33 c34 c35 c36 c37 c38 c39 c40",707,712,2025-11-07 11:49:39.248231,2025-11-07 11:49:39.248231 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(716,7)-(718,61)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26, c27, c28, c29, c30, c31, c32, c33, c34, c35, c36, c37, c38, c39, c40, c41) => (%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27 c28 c29 c30 c31 c32 c33 c34 c35 c36 c37 c38 c39 c40 c41",713,718,2025-11-07 11:49:39.248243,2025-11-07 11:49:39.248243 ghc,unknown,System.Console.Terminfo.Base,OutputCap,libraries/terminfo/System/Console/Terminfo/Base.hs:329:7-15,"class OutputCap f where hasOkPadding :: f -> String -> Bool outputCap :: ([Int] -> String) -> [Int] -> f",329,331,2025-11-07 11:49:39.248840,2025-11-07 11:49:39.248840 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(722,7)-(724,66)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26, c27, c28, c29, c30, c31, c32, c33, c34, c35, c36, c37, c38, c39, c40, c41, c42) => (%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27 c28 c29 c30 c31 c32 c33 c34 c35 c36 c37 c38 c39 c40 c41 c42",719,724,2025-11-07 11:49:39.248256,2025-11-07 11:49:39.248256 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(728,7)-(730,71)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26, c27, c28, c29, c30, c31, c32, c33, c34, c35, c36, c37, c38, c39, c40, c41, c42, c43) => (%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27 c28 c29 c30 c31 c32 c33 c34 c35 c36 c37 c38 c39 c40 c41 c42 c43",725,730,2025-11-07 11:49:39.248268,2025-11-07 11:49:39.248268 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(734,7)-(736,76)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26, c27, c28, c29, c30, c31, c32, c33, c34, c35, c36, c37, c38, c39, c40, c41, c42, c43, c44) => (%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27 c28 c29 c30 c31 c32 c33 c34 c35 c36 c37 c38 c39 c40 c41 c42 c43 c44",731,736,2025-11-07 11:49:39.248281,2025-11-07 11:49:39.248281 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(741,7)-(744,11)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26, c27, c28, c29, c30, c31, c32, c33, c34, c35, c36, c37, c38, c39, c40, c41, c42, c43, c44, c45) => (%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27 c28 c29 c30 c31 c32 c33 c34 c35 c36 c37 c38 c39 c40 c41 c42 c43 c44 c45",737,744,2025-11-07 11:49:39.248293,2025-11-07 11:49:39.248293 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(749,7)-(752,16)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26, c27, c28, c29, c30, c31, c32, c33, c34, c35, c36, c37, c38, c39, c40, c41, c42, c43, c44, c45, c46) => (%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27 c28 c29 c30 c31 c32 c33 c34 c35 c36 c37 c38 c39 c40 c41 c42 c43 c44 c45 c46",745,752,2025-11-07 11:49:39.248306,2025-11-07 11:49:39.248306 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(757,7)-(760,21)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26, c27, c28, c29, c30, c31, c32, c33, c34, c35, c36, c37, c38, c39, c40, c41, c42, c43, c44, c45, c46, c47) => (%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27 c28 c29 c30 c31 c32 c33 c34 c35 c36 c37 c38 c39 c40 c41 c42 c43 c44 c45 c46 c47",753,760,2025-11-07 11:49:39.248334,2025-11-07 11:49:39.248334 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(765,7)-(768,26)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26, c27, c28, c29, c30, c31, c32, c33, c34, c35, c36, c37, c38, c39, c40, c41, c42, c43, c44, c45, c46, c47, c48) => (%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27 c28 c29 c30 c31 c32 c33 c34 c35 c36 c37 c38 c39 c40 c41 c42 c43 c44 c45 c46 c47 c48",761,768,2025-11-07 11:49:39.248348,2025-11-07 11:49:39.248348 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(773,7)-(776,31)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26, c27, c28, c29, c30, c31, c32, c33, c34, c35, c36, c37, c38, c39, c40, c41, c42, c43, c44, c45, c46, c47, c48, c49) => (%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27 c28 c29 c30 c31 c32 c33 c34 c35 c36 c37 c38 c39 c40 c41 c42 c43 c44 c45 c46 c47 c48 c49",769,776,2025-11-07 11:49:39.248362,2025-11-07 11:49:39.248362 ghc,unknown,System.Console.Terminfo.Base,TermStr,libraries/terminfo/System/Console/Terminfo/Base.hs:371:34-40,"class (Monoid s, OutputCap s) => TermStr s",371,371,2025-11-07 11:49:39.248848,2025-11-07 11:49:39.248848 ghc,unknown,Control.Monad.Trans.Error,Error,libraries/transformers/Control/Monad/Trans/Error.hs:133:7-11,"class Error a where noMsg :: a strMsg :: String -> a noMsg = strMsg """" strMsg _ = noMsg",133,142,2025-11-07 11:49:39.248855,2025-11-07 11:49:39.248855 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(781,7)-(784,36)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26, c27, c28, c29, c30, c31, c32, c33, c34, c35, c36, c37, c38, c39, c40, c41, c42, c43, c44, c45, c46, c47, c48, c49, c50) => (%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27 c28 c29 c30 c31 c32 c33 c34 c35 c36 c37 c38 c39 c40 c41 c42 c43 c44 c45 c46 c47 c48 c49 c50",777,784,2025-11-07 11:49:39.248375,2025-11-07 11:49:39.248375 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(789,7)-(792,41)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26, c27, c28, c29, c30, c31, c32, c33, c34, c35, c36, c37, c38, c39, c40, c41, c42, c43, c44, c45, c46, c47, c48, c49, c50, c51) => (%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27 c28 c29 c30 c31 c32 c33 c34 c35 c36 c37 c38 c39 c40 c41 c42 c43 c44 c45 c46 c47 c48 c49 c50 c51",785,792,2025-11-07 11:49:39.248389,2025-11-07 11:49:39.248389 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(797,7)-(800,46)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26, c27, c28, c29, c30, c31, c32, c33, c34, c35, c36, c37, c38, c39, c40, c41, c42, c43, c44, c45, c46, c47, c48, c49, c50, c51, c52) => (%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27 c28 c29 c30 c31 c32 c33 c34 c35 c36 c37 c38 c39 c40 c41 c42 c43 c44 c45 c46 c47 c48 c49 c50 c51 c52",793,800,2025-11-07 11:49:39.248408,2025-11-07 11:49:39.248408 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(805,7)-(808,51)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26, c27, c28, c29, c30, c31, c32, c33, c34, c35, c36, c37, c38, c39, c40, c41, c42, c43, c44, c45, c46, c47, c48, c49, c50, c51, c52, c53) => (%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27 c28 c29 c30 c31 c32 c33 c34 c35 c36 c37 c38 c39 c40 c41 c42 c43 c44 c45 c46 c47 c48 c49 c50 c51 c52 c53",801,808,2025-11-07 11:49:39.248422,2025-11-07 11:49:39.248422 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(813,7)-(816,56)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26, c27, c28, c29, c30, c31, c32, c33, c34, c35, c36, c37, c38, c39, c40, c41, c42, c43, c44, c45, c46, c47, c48, c49, c50, c51, c52, c53, c54) => (%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27 c28 c29 c30 c31 c32 c33 c34 c35 c36 c37 c38 c39 c40 c41 c42 c43 c44 c45 c46 c47 c48 c49 c50 c51 c52 c53 c54",809,816,2025-11-07 11:49:39.248436,2025-11-07 11:49:39.248436 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(821,7)-(824,61)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26, c27, c28, c29, c30, c31, c32, c33, c34, c35, c36, c37, c38, c39, c40, c41, c42, c43, c44, c45, c46, c47, c48, c49, c50, c51, c52, c53, c54, c55) => (%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27 c28 c29 c30 c31 c32 c33 c34 c35 c36 c37 c38 c39 c40 c41 c42 c43 c44 c45 c46 c47 c48 c49 c50 c51 c52 c53 c54 c55",817,824,2025-11-07 11:49:39.248461,2025-11-07 11:49:39.248461 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(829,7)-(832,66)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26, c27, c28, c29, c30, c31, c32, c33, c34, c35, c36, c37, c38, c39, c40, c41, c42, c43, c44, c45, c46, c47, c48, c49, c50, c51, c52, c53, c54, c55, c56) => (%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27 c28 c29 c30 c31 c32 c33 c34 c35 c36 c37 c38 c39 c40 c41 c42 c43 c44 c45 c46 c47 c48 c49 c50 c51 c52 c53 c54 c55 c56",825,832,2025-11-07 11:49:39.248478,2025-11-07 11:49:39.248478 ghc,unknown,Control.Monad.Trans.Error,ErrorList,libraries/transformers/Control/Monad/Trans/Error.hs:152:7-15,"class ErrorList a where listMsg :: String -> [a]",152,153,2025-11-07 11:49:39.248862,2025-11-07 11:49:39.248862 ghc,unknown,Control.Monad.Trans.Class,MonadTrans,libraries/transformers/Control/Monad/Trans/Class.hs:56:7-16,"class MonadTrans t where lift :: (Monad m) => m a -> t m a",56,58,2025-11-07 11:49:39.248868,2025-11-07 11:49:39.248868 shelly,unknown,Shelly,CmdArg,src/Shelly.hs:155:7-12,"class CmdArg a where toTextArgs :: a -> [Text]",155,157,2025-11-07 11:54:47.231668,2025-11-07 11:54:47.231668 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(837,7)-(840,71)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26, c27, c28, c29, c30, c31, c32, c33, c34, c35, c36, c37, c38, c39, c40, c41, c42, c43, c44, c45, c46, c47, c48, c49, c50, c51, c52, c53, c54, c55, c56, c57) => (%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27 c28 c29 c30 c31 c32 c33 c34 c35 c36 c37 c38 c39 c40 c41 c42 c43 c44 c45 c46 c47 c48 c49 c50 c51 c52 c53 c54 c55 c56 c57",833,840,2025-11-07 11:49:39.248493,2025-11-07 11:49:39.248493 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(845,7)-(848,76)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26, c27, c28, c29, c30, c31, c32, c33, c34, c35, c36, c37, c38, c39, c40, c41, c42, c43, c44, c45, c46, c47, c48, c49, c50, c51, c52, c53, c54, c55, c56, c57, c58) => (%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27 c28 c29 c30 c31 c32 c33 c34 c35 c36 c37 c38 c39 c40 c41 c42 c43 c44 c45 c46 c47 c48 c49 c50 c51 c52 c53 c54 c55 c56 c57 c58",841,848,2025-11-07 11:49:39.248509,2025-11-07 11:49:39.248509 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(854,7)-(858,11)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26, c27, c28, c29, c30, c31, c32, c33, c34, c35, c36, c37, c38, c39, c40, c41, c42, c43, c44, c45, c46, c47, c48, c49, c50, c51, c52, c53, c54, c55, c56, c57, c58, c59) => (%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27 c28 c29 c30 c31 c32 c33 c34 c35 c36 c37 c38 c39 c40 c41 c42 c43 c44 c45 c46 c47 c48 c49 c50 c51 c52 c53 c54 c55 c56 c57 c58 c59",849,858,2025-11-07 11:49:39.248525,2025-11-07 11:49:39.248525 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(864,7)-(868,16)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26, c27, c28, c29, c30, c31, c32, c33, c34, c35, c36, c37, c38, c39, c40, c41, c42, c43, c44, c45, c46, c47, c48, c49, c50, c51, c52, c53, c54, c55, c56, c57, c58, c59, c60) => (%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27 c28 c29 c30 c31 c32 c33 c34 c35 c36 c37 c38 c39 c40 c41 c42 c43 c44 c45 c46 c47 c48 c49 c50 c51 c52 c53 c54 c55 c56 c57 c58 c59 c60",859,868,2025-11-07 11:49:39.248545,2025-11-07 11:49:39.248545 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(874,7)-(878,21)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26, c27, c28, c29, c30, c31, c32, c33, c34, c35, c36, c37, c38, c39, c40, c41, c42, c43, c44, c45, c46, c47, c48, c49, c50, c51, c52, c53, c54, c55, c56, c57, c58, c59, c60, c61) => (%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27 c28 c29 c30 c31 c32 c33 c34 c35 c36 c37 c38 c39 c40 c41 c42 c43 c44 c45 c46 c47 c48 c49 c50 c51 c52 c53 c54 c55 c56 c57 c58 c59 c60 c61",869,878,2025-11-07 11:49:39.248561,2025-11-07 11:49:39.248561 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(884,7)-(888,26)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26, c27, c28, c29, c30, c31, c32, c33, c34, c35, c36, c37, c38, c39, c40, c41, c42, c43, c44, c45, c46, c47, c48, c49, c50, c51, c52, c53, c54, c55, c56, c57, c58, c59, c60, c61, c62) => (%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27 c28 c29 c30 c31 c32 c33 c34 c35 c36 c37 c38 c39 c40 c41 c42 c43 c44 c45 c46 c47 c48 c49 c50 c51 c52 c53 c54 c55 c56 c57 c58 c59 c60 c61 c62",879,888,2025-11-07 11:49:39.248588,2025-11-07 11:49:39.248588 ghc,unknown,Control.DeepSeq,GNFData,libraries/deepseq/Control/DeepSeq.hs:159:7-13,"class GNFData arity f where grnf :: RnfArgs arity a -> f a -> ()",159,160,2025-11-07 11:49:39.248874,2025-11-07 11:49:39.248874 ghc,unknown,Control.DeepSeq,NFData,libraries/deepseq/Control/DeepSeq.hs:321:7-12,"class NFData a where rnf :: a -> () default rnf :: (Generic a, GNFData Zero (Rep a)) => a -> () rnf = grnf RnfArgs0 . from",321,390,2025-11-07 11:49:39.248880,2025-11-07 11:49:39.248880 ghc,unknown,Control.DeepSeq,NFData1,libraries/deepseq/Control/DeepSeq.hs:395:7-13,"class NFData1 f where liftRnf :: (a -> ()) -> f a -> () default liftRnf :: (Generic1 f, GNFData One (Rep1 f)) => (a -> ()) -> f a -> () liftRnf r = grnf (RnfArgs1 r) . from1",395,404,2025-11-07 11:49:39.248886,2025-11-07 11:49:39.248886 shelly,unknown,Shelly,ToFilePath,src/Shelly.hs:211:7-16,"class ToFilePath a where toFilePath :: a -> FilePath",211,212,2025-11-07 11:54:47.231687,2025-11-07 11:54:47.231687 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(894,7)-(898,31)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26, c27, c28, c29, c30, c31, c32, c33, c34, c35, c36, c37, c38, c39, c40, c41, c42, c43, c44, c45, c46, c47, c48, c49, c50, c51, c52, c53, c54, c55, c56, c57, c58, c59, c60, c61, c62, c63) => (%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27 c28 c29 c30 c31 c32 c33 c34 c35 c36 c37 c38 c39 c40 c41 c42 c43 c44 c45 c46 c47 c48 c49 c50 c51 c52 c53 c54 c55 c56 c57 c58 c59 c60 c61 c62 c63",889,898,2025-11-07 11:49:39.248605,2025-11-07 11:49:39.248605 ghc,unknown,GHC.Classes,"(%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%)","libraries/ghc-prim/GHC/Classes.hs:(904,7)-(908,36)","class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16, c17, c18, c19, c20, c21, c22, c23, c24, c25, c26, c27, c28, c29, c30, c31, c32, c33, c34, c35, c36, c37, c38, c39, c40, c41, c42, c43, c44, c45, c46, c47, c48, c49, c50, c51, c52, c53, c54, c55, c56, c57, c58, c59, c60, c61, c62, c63, c64) => (%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%) c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 c16 c17 c18 c19 c20 c21 c22 c23 c24 c25 c26 c27 c28 c29 c30 c31 c32 c33 c34 c35 c36 c37 c38 c39 c40 c41 c42 c43 c44 c45 c46 c47 c48 c49 c50 c51 c52 c53 c54 c55 c56 c57 c58 c59 c60 c61 c62 c63 c64",899,908,2025-11-07 11:49:39.248621,2025-11-07 11:49:39.248621 ghc,unknown,Trace.Hpc.Util,HpcHash,libraries/hpc/Trace/Hpc/Util.hs:77:7-13,"class HpcHash a where toHash :: a -> Hash",77,78,2025-11-07 11:49:39.248638,2025-11-07 11:49:39.248638 ghc,unknown,Control.Monad.Catch,MonadThrow,libraries/exceptions/src/Control/Monad/Catch.hs:134:18-27,"class Monad m => MonadThrow m where throwM :: Exception e => e -> m a",134,142,2025-11-07 11:49:39.248645,2025-11-07 11:49:39.248645 ghc,unknown,Control.Monad.Catch,MonadCatch,libraries/exceptions/src/Control/Monad/Catch.hs:157:23-32,"class MonadThrow m => MonadCatch m where catch :: Exception e => m a -> (e -> m a) -> m a",157,162,2025-11-07 11:49:39.248651,2025-11-07 11:49:39.248651 ghc,unknown,Control.Monad.Catch,MonadMask,libraries/exceptions/src/Control/Monad/Catch.hs:199:23-31,"class MonadCatch m => MonadMask m where mask :: ((forall a. m a -> m a) -> m b) -> m b uninterruptibleMask :: ((forall a. m a -> m a) -> m b) -> m b generalBracket :: m a "" acquire some resource"" -> (a -> ExitCase b -> m c) "" release the resource, observing the outcome of the inner action"" -> (a -> m b) "" inner action to perform with the resource"" -> m (b, c)",199,310,2025-11-07 11:49:39.248660,2025-11-07 11:49:39.248660 ghc,unknown,Data.Format,IsoVariant,libraries/time/lib/Data/Format.hs:33:7-16,"class IsoVariant f where isoMap :: (a -> b) -> (b -> a) -> f a -> f b",33,34,2025-11-07 11:49:39.248670,2025-11-07 11:49:39.248670 ghc,unknown,Data.Format,Productish,libraries/time/lib/Data/Format.hs:41:23-32,"class IsoVariant f => Productish f where pUnit :: f () (<**>) :: f a -> f b -> f (a, b) (**>) :: f () -> f a -> f a fu **> fa = isoMap (\ ((), a) -> a) (\ a -> ((), a)) $ fu <**> fa (<**) :: f a -> f () -> f a fa <** fu = isoMap (\ (a, ()) -> a) (\ a -> (a, ())) $ fa <**> fu",41,47,2025-11-07 11:49:39.248675,2025-11-07 11:49:39.248675 ghc,unknown,Data.Format,Summish,libraries/time/lib/Data/Format.hs:51:23-29,"class IsoVariant f => Summish f where pVoid :: f Void (<++>) :: f a -> f b -> f (Either a b)",51,53,2025-11-07 11:49:39.248683,2025-11-07 11:49:39.248683 ghc,unknown,Data.Time.Calendar.Private,ShowPadded,libraries/time/lib/Data/Time/Calendar/Private.hs:16:33-42,"class (Num t, Ord t, Show t) => ShowPadded t where showPaddedNum :: PadOption -> t -> String",16,17,2025-11-07 11:49:39.248690,2025-11-07 11:49:39.248690 ghc,unknown,Data.Time.Format.ISO8601,ISO8601,libraries/time/lib/Data/Time/Format/ISO8601.hs:358:7-13,"class ISO8601 t where iso8601Format :: Format t",358,360,2025-11-07 11:49:39.248696,2025-11-07 11:49:39.248696 ghc,unknown,Data.Time.Format.Parse.Class,ParseTime,libraries/time/lib/Data/Time/Format/Parse/Class.hs:27:7-15,"class ParseTime t where substituteTimeSpecifier :: Proxy t -> TimeLocale -> Char -> Maybe String substituteTimeSpecifier _ _ _ = Nothing parseTimeSpecifier :: Proxy t -> TimeLocale -> Maybe ParseNumericPadding -> Char -> ReadP String buildTime :: TimeLocale "" The time locale."" -> [(Char, String)] "" Pairs of format characters and the corresponding part of the input."" -> Maybe t",27,46,2025-11-07 11:49:39.248703,2025-11-07 11:49:39.248703 ghc,unknown,Data.Time.Format.Format.Class,FormatTime,libraries/time/lib/Data/Time/Format/Format/Class.hs:37:7-16,"class FormatTime t where formatCharacter :: Bool -> Char -> Maybe (FormatOptions -> t -> String)",37,39,2025-11-07 11:49:39.248713,2025-11-07 11:49:39.248713 ghc,unknown,System.Console.Haskeline.Term,Term,libraries/haskeline/System/Console/Haskeline/Term.hs:28:57-60,"class (MonadReader Layout m, MonadIO m, MonadMask m) => Term m where reposition :: Layout -> LineChars -> m () moveToNextLine :: LineChars -> m () printLines :: [String] -> m () drawLineDiff :: LineChars -> LineChars -> m () clearLayout :: m () ringBell :: Bool -> m ()",28,34,2025-11-07 11:49:39.248719,2025-11-07 11:49:39.248719 ghc,unknown,System.Console.Haskeline.Term,CommandMonad,libraries/haskeline/System/Console/Haskeline/Term.hs:112:12-23,"class (MonadReader Prefs m, MonadReader Layout m, MonadIO m, MonadMask m) => CommandMonad m where runCompletion :: (String, String) -> m (String, [Completion])",111,113,2025-11-07 11:49:39.248727,2025-11-07 11:49:39.248727 ghc,unknown,System.Console.Haskeline.Monads,MonadReader,libraries/haskeline/System/Console/Haskeline/Monads.hs:35:18-28,"class Monad m => MonadReader r m where ask :: m r",35,36,2025-11-07 11:49:39.248738,2025-11-07 11:49:39.248738 ghc,unknown,System.Console.Haskeline.Monads,MonadState,libraries/haskeline/System/Console/Haskeline/Monads.hs:51:18-27,"class Monad m => MonadState s m where get :: m s put :: s -> m ()",51,53,2025-11-07 11:49:39.248755,2025-11-07 11:49:39.248755 ghc,unknown,System.Console.Haskeline.LineState,LineState,libraries/haskeline/System/Console/Haskeline/LineState.hs:130:7-15,"class LineState s where beforeCursor :: Prefix "" The input prefix."" -> s "" The current line state."" -> [Grapheme] "" The text to the left of the cursor (including the prefix)."" afterCursor :: s -> [Grapheme] "" The text under and to the right of the cursor.""",130,135,2025-11-07 11:49:39.248761,2025-11-07 11:49:39.248761 ghc,unknown,System.Console.Haskeline.LineState,Result,libraries/haskeline/System/Console/Haskeline/LineState.hs:151:22-27,"class LineState s => Result s where toResult :: s -> String",151,152,2025-11-07 11:49:39.248769,2025-11-07 11:49:39.248769 ghc,unknown,GHC.Utils.Outputable,Outputable,compiler/GHC/Utils/Outputable.hs:825:7-16,"class Outputable a where ppr :: a -> SDoc",825,826,2025-11-07 11:49:39.250403,2025-11-07 11:49:39.250403 ghc,unknown,Data.Binary.Generic,GSumGet,libraries/binary/src/Data/Binary/Generic.hs:116:7-13,"class GSumGet f where getSum :: (Ord word, Num word, Bits word) => word -> word -> Get (f a)",116,117,2025-11-07 11:49:39.248898,2025-11-07 11:49:39.248898 ghc,unknown,Data.Binary.Generic,GSumPut,libraries/binary/src/Data/Binary/Generic.hs:119:7-13,"class GSumPut f where putSum :: (Num w, Bits w, Binary w) => w -> w -> f a -> Put",119,120,2025-11-07 11:49:39.248904,2025-11-07 11:49:39.248904 ghc,unknown,Data.Binary.Generic,SumSize,libraries/binary/src/Data/Binary/Generic.hs:145:7-13,"class SumSize f where sumSize :: Tagged f Word64",145,146,2025-11-07 11:49:39.248909,2025-11-07 11:49:39.248909 ghc,unknown,Data.Binary.Class,GBinaryPut,libraries/binary/src/Data/Binary/Class.hs:133:7-16,"class GBinaryPut f where gput :: f t -> Put",133,134,2025-11-07 11:49:39.248915,2025-11-07 11:49:39.248915 ghc,unknown,Data.Binary.Class,GBinaryGet,libraries/binary/src/Data/Binary/Class.hs:136:7-16,"class GBinaryGet f where gget :: Get (f t)",136,137,2025-11-07 11:49:39.248920,2025-11-07 11:49:39.248920 ghc,unknown,Data.Binary.Class,Binary,libraries/binary/src/Data/Binary/Class.hs:156:7-12,"class Binary t where put :: t -> Put get :: Get t putList :: [t] -> Put putList = defaultPutList default put :: (Generic t, GBinaryPut (Rep t)) => t -> Put put = gput . from default get :: (Generic t, GBinaryGet (Rep t)) => Get t get = to `fmap` gget",156,172,2025-11-07 11:49:39.248924,2025-11-07 11:49:39.248924 ghc,unknown,Control.Monad.Reader.Class,MonadReader,libraries/mtl/Control/Monad/Reader/Class.hs:75:18-28,"class Monad m => MonadReader r m | m -> r where {-# MINIMAL (ask | reader), local #-} ask :: m r ask = reader id local :: (r -> r) "" The function to modify the environment."" -> m a "" @Reader@ to run in the modified environment."" -> m a reader :: (r -> a) "" The selector function to apply to the environment."" -> m a reader f = do r <- ask return (f r)",75,93,2025-11-07 11:49:39.248932,2025-11-07 11:49:39.248932 ghc,unknown,Control.Monad.RWS.Class,MonadRWS,libraries/mtl/Control/Monad/RWS/Class.hs:48:7-14,"class (Monoid w, MonadReader r m, MonadWriter w m, MonadState s m) => MonadRWS r w s m | m -> r, m -> w, m -> s",47,48,2025-11-07 11:49:39.248943,2025-11-07 11:49:39.248943 ghc,unknown,Control.Monad.State.Class,MonadState,libraries/mtl/Control/Monad/State/Class.hs:56:18-27,"class Monad m => MonadState s m | m -> s where get :: m s get = state (\ s -> (s, s)) put :: s -> m () put s = state (\ _ -> ((), s)) state :: (s -> (a, s)) -> m a state f = do s <- get let ~(a, s') = f s put s' return a {-# MINIMAL state | get, put #-}",56,73,2025-11-07 11:49:39.248950,2025-11-07 11:49:39.248950 ghc,unknown,Control.Monad.Writer.Class,MonadWriter,libraries/mtl/Control/Monad/Writer/Class.hs:65:30-40,"class (Monoid w, Monad m) => MonadWriter w m | m -> w where {-# MINIMAL (writer | tell), listen, pass #-} writer :: (a, w) -> m a writer ~(a, w) = do tell w return a tell :: w -> m () tell w = writer ((), w) listen :: m a -> m (a, w) pass :: m (a, w -> w) -> m a",65,85,2025-11-07 11:49:39.248959,2025-11-07 11:49:39.248959 ghc,unknown,Control.Monad.Error.Class,MonadError,libraries/mtl/Control/Monad/Error/Class.hs:91:20-29,"class (Monad m) => MonadError e m | m -> e where throwError :: e -> m a catchError :: m a -> (e -> m a) -> m a {-# MINIMAL throwError, catchError #-}",91,106,2025-11-07 11:49:39.248967,2025-11-07 11:49:39.248967 ghc,unknown,Control.Monad.Cont.Class,MonadCont,libraries/mtl/Control/Monad/Cont/Class.hs:74:18-26,"class Monad m => MonadCont m where callCC :: ((a -> m b) -> m a) -> m a {-# MINIMAL callCC #-}",74,95,2025-11-07 11:49:39.248978,2025-11-07 11:49:39.248978 ghc,unknown,Text.PrettyPrint.HughesPJClass,Pretty,libraries/pretty/src/Text/PrettyPrint/HughesPJClass.hs:47:7-12,"class Pretty a where pPrintPrec :: PrettyLevel -> Rational -> a -> Doc pPrintPrec _ _ = pPrint pPrint :: a -> Doc pPrint = pPrintPrec prettyNormal 0 pPrintList :: PrettyLevel -> [a] -> Doc pPrintList l = brackets . fsep . punctuate comma . map (pPrintPrec l 0) {-# MINIMAL pPrintPrec | pPrint #-}",47,58,2025-11-07 11:49:39.248984,2025-11-07 11:49:39.248984 ghc,unknown,Text.PrettyPrint.Annotated.HughesPJClass,Pretty,libraries/pretty/src/Text/PrettyPrint/Annotated/HughesPJClass.hs:48:7-12,"class Pretty a where pPrintPrec :: PrettyLevel -> Rational -> a -> Doc ann pPrintPrec _ _ = pPrint pPrint :: a -> Doc ann pPrint = pPrintPrec prettyNormal 0 pPrintList :: PrettyLevel -> [a] -> Doc ann pPrintList l = brackets . fsep . punctuate comma . map (pPrintPrec l 0) {-# MINIMAL pPrintPrec | pPrint #-}",48,59,2025-11-07 11:49:39.248999,2025-11-07 11:49:39.248999 ghc,unknown,Utils.Containers.Internal.TypeError,Whoops,libraries/containers/containers/src/Utils/Containers/Internal/TypeError.hs:29:7-12,class Whoops (a :: Symbol),29,29,2025-11-07 11:49:39.249070,2025-11-07 11:49:39.249070 ghc,unknown,Data.Sequence.Internal,Sized,libraries/containers/containers/src/Data/Sequence/Internal.hs:323:7-11,"class Sized a where size :: a -> Int",323,324,2025-11-07 11:49:39.249077,2025-11-07 11:49:39.249077 ghc,unknown,Data.Sequence.Internal,MaybeForce,libraries/containers/containers/src/Data/Sequence/Internal.hs:331:7-16,"class MaybeForce a where maybeRwhnf :: a -> ()",331,332,2025-11-07 11:49:39.249082,2025-11-07 11:49:39.249082 ghc,unknown,Data.Sequence.Internal,UnzipWith,libraries/containers/containers/src/Data/Sequence/Internal.hs:4758:7-15,"class UnzipWith f where unzipWith' :: (x -> (a, b)) -> f x -> (f a, f b)",4758,4759,2025-11-07 11:49:39.249087,2025-11-07 11:49:39.249087 ghc,unknown,Data.Text.Internal.Unsafe.Shift,UnsafeShift,libraries/text/src/Data/Text/Internal/Unsafe/Shift.hs:34:7-17,"class UnsafeShift a where shiftL :: a -> Int -> a {-# INLINE shiftL #-} default shiftL :: Bits.Bits a => a -> Int -> a shiftL = Bits.unsafeShiftL shiftR :: a -> Int -> a {-# INLINE shiftR #-} default shiftR :: Bits.Bits a => a -> Int -> a shiftR = Bits.unsafeShiftR",34,43,2025-11-07 11:49:39.249093,2025-11-07 11:49:39.249093 ghc,unknown,GHC.TypeLits,KnownSymbol,libraries/base/GHC/TypeLits.hs:83:7-17,"class KnownSymbol (n :: Symbol) where symbolSing :: SSymbol n",83,84,2025-11-07 11:49:39.249101,2025-11-07 11:49:39.249101 ghc,unknown,GHC.TypeLits,KnownChar,libraries/base/GHC/TypeLits.hs:110:7-15,"class KnownChar (n :: Char) where charSing :: SChar n",110,111,2025-11-07 11:49:39.249106,2025-11-07 11:49:39.249106 ghc,unknown,GHC.GHCi,GHCiSandboxIO,libraries/base/GHC/GHCi.hs:28:20-32,"class (Monad m) => GHCiSandboxIO m where ghciStepIO :: m a -> IO a",28,29,2025-11-07 11:49:39.249112,2025-11-07 11:49:39.249112 ghc,unknown,GHC.Show,Show,libraries/base/GHC/Show.hs:113:8-11,"class Show a where {-# MINIMAL showsPrec | show #-} showsPrec :: Int "" the operator precedence of the enclosing context (a number from @0@ to @11@). Function application has precedence @10@."" -> a "" the value to be converted to a 'String'"" -> ShowS show :: a -> String showList :: [a] -> ShowS showsPrec _ x s = show x ++ s show x = shows x """" showList ls s = showList__ shows ls s",113,149,2025-11-07 11:49:39.249117,2025-11-07 11:49:39.249117 ghc,unknown,GHC.Real.hs-boot.class_code.json,Integral,libraries/base/GHC/Real.hs-boot:7:7-14,class Integral a,7,7,2025-11-07 11:49:39.249126,2025-11-07 11:49:39.249126 ghc,unknown,GHC.Exts,IsList,libraries/base/GHC/Exts.hs:204:7-12,"class IsList l where type Item l fromList :: [Item l] -> l fromListN :: Int -> [Item l] -> l fromListN _ = fromList toList :: l -> [Item l]",204,224,2025-11-07 11:49:39.249131,2025-11-07 11:49:39.249131 ghc,unknown,Data.Functor.Contravariant,Contravariant,libraries/base/Data/Functor/Contravariant.hs:99:7-19,"class Contravariant f where contramap :: (a' -> a) -> (f a -> f a') (>$) :: b -> f b -> f a (>$) = contramap . const",99,106,2025-11-07 11:49:39.249633,2025-11-07 11:49:39.249633 syb,unknown,GetC,GetC,tests/GetC.hs:95:7-10,"class GetC f where getC :: f -> [ExTypeable] -> Maybe Constr",95,97,2025-11-07 11:55:36.962004,2025-11-07 11:55:36.962004 ghc,unknown,GHC.Float,Floating,libraries/base/GHC/Float.hs:90:26-33,"class (Fractional a) => Floating a where pi :: a exp, log, sqrt :: a -> a (**), logBase :: a -> a -> a sin, cos, tan :: a -> a asin, acos, atan :: a -> a sinh, cosh, tanh :: a -> a asinh, acosh, atanh :: a -> a log1p :: a -> a expm1 :: a -> a log1pexp :: a -> a log1mexp :: a -> a {-# INLINE (**) #-} {-# INLINE logBase #-} {-# INLINE sqrt #-} {-# INLINE tan #-} {-# INLINE tanh #-} x ** y = exp (log x * y) logBase x y = log y / log x sqrt x = x ** 0.5 tan x = sin x / cos x tanh x = sinh x / cosh x {-# INLINE log1p #-} {-# INLINE expm1 #-} {-# INLINE log1pexp #-} {-# INLINE log1mexp #-} log1p x = log (1 + x) expm1 x = exp x - 1 log1pexp x = log1p (exp x) log1mexp x = log1p (negate (exp x))",90,157,2025-11-07 11:49:39.249137,2025-11-07 11:49:39.249137 ghc,unknown,GHC.Float,RealFloat,libraries/base/GHC/Float.hs:169:36-44,"class (RealFrac a, Floating a) => RealFloat a where floatRadix :: a -> Integer floatDigits :: a -> Int floatRange :: a -> (Int, Int) decodeFloat :: a -> (Integer, Int) encodeFloat :: Integer -> Int -> a exponent :: a -> Int significand :: a -> a scaleFloat :: Int -> a -> a isNaN :: a -> Bool isInfinite :: a -> Bool isDenormalized :: a -> Bool isNegativeZero :: a -> Bool isIEEE :: a -> Bool atan2 :: a -> a -> a exponent x = if m == 0 then 0 else n + floatDigits x where (m, n) = decodeFloat x significand x = encodeFloat m (negate (floatDigits x)) where (m, _) = decodeFloat x scaleFloat 0 x = x scaleFloat k x | isFix = x | otherwise = encodeFloat m (n + clamp b k) where (m, n) = decodeFloat x (l, h) = floatRange x d = floatDigits x b = h - l + 4 * d isFix = x == 0 || isNaN x || isInfinite x atan2 y x | x > 0 = atan (y / x) | x == 0 && y > 0 = pi / 2 | x < 0 && y > 0 = pi + atan (y / x) | (x <= 0 && y < 0) || (x < 0 && isNegativeZero y) || (isNegativeZero x && isNegativeZero y) = - atan2 (- y) x | y == 0 && (x < 0 || isNegativeZero x) = pi | x == 0 && y == 0 = y | otherwise = x + y",169,272,2025-11-07 11:49:39.249150,2025-11-07 11:49:39.249150 ghc,unknown,GHC.Enum,Bounded,libraries/base/GHC/Enum.hs:52:8-14,"class Bounded a where minBound, maxBound :: a",52,53,2025-11-07 11:49:39.249168,2025-11-07 11:49:39.249168 ghc,unknown,GHC.Enum,Enum,libraries/base/GHC/Enum.hs:84:8-11,"class Enum a where succ :: a -> a pred :: a -> a toEnum :: Int -> a fromEnum :: a -> Int enumFrom :: a -> [a] enumFromThen :: a -> a -> [a] enumFromTo :: a -> a -> [a] enumFromThenTo :: a -> a -> a -> [a] succ = toEnum . (+ 1) . fromEnum pred = toEnum . (subtract 1) . fromEnum {-# INLINABLE enumFrom #-} enumFrom x = map toEnum [fromEnum x .. ] {-# INLINABLE enumFromThen #-} enumFromThen x y = map toEnum [fromEnum x, fromEnum y .. ] {-# INLINABLE enumFromTo #-} enumFromTo x y = map toEnum [fromEnum x .. fromEnum y] {-# INLINABLE enumFromThenTo #-} enumFromThenTo x1 x2 y = map toEnum [fromEnum x1, fromEnum x2 .. fromEnum y]",84,161,2025-11-07 11:49:39.249173,2025-11-07 11:49:39.249173 ghc,unknown,GHC.Ix,Ix,libraries/base/GHC/Ix.hs:49:18-19,"class (Ord a) => Ix a where {-# MINIMAL range, (index | unsafeIndex), inRange #-} range :: (a, a) -> [a] index :: (a, a) -> a -> Int unsafeIndex :: (a, a) -> a -> Int inRange :: (a, a) -> a -> Bool rangeSize :: (a, a) -> Int unsafeRangeSize :: (a, a) -> Int {-# INLINE index #-} index b i | inRange b i = unsafeIndex b i | otherwise = hopelessIndexError unsafeIndex b i = index b i rangeSize b@(_l, h) | inRange b h = unsafeIndex b h + 1 | otherwise = 0 unsafeRangeSize b@(_l, h) = unsafeIndex b h + 1",49,84,2025-11-07 11:49:39.249185,2025-11-07 11:49:39.249185 ghc,unknown,GHC.Bits,Bits,libraries/base/GHC/Bits.hs:79:15-18,"class Eq a => Bits a where {-# MINIMAL (.&.), (.|.), xor, complement, (shift | (shiftL, shiftR)), (rotate | (rotateL, rotateR)), bitSize, bitSizeMaybe, isSigned, testBit, bit, popCount #-} (.&.) :: a -> a -> a (.|.) :: a -> a -> a xor :: a -> a -> a complement :: a -> a shift :: a -> Int -> a x `shift` i | i < 0 = x `shiftR` (- i) | i > 0 = x `shiftL` i | otherwise = x rotate :: a -> Int -> a x `rotate` i | i < 0 = x `rotateR` (- i) | i > 0 = x `rotateL` i | otherwise = x zeroBits :: a zeroBits = clearBit (bit 0) 0 bit :: Int -> a setBit :: a -> Int -> a clearBit :: a -> Int -> a complementBit :: a -> Int -> a testBit :: a -> Int -> Bool bitSizeMaybe :: a -> Maybe Int bitSize :: a -> Int bitSize b = fromMaybe (error ""bitSize is undefined"") (bitSizeMaybe b) isSigned :: a -> Bool {-# INLINE setBit #-} {-# INLINE clearBit #-} {-# INLINE complementBit #-} x `setBit` i = x .|. bit i x `clearBit` i = x .&. complement (bit i) x `complementBit` i = x `xor` bit i shiftL :: a -> Int -> a {-# INLINE shiftL #-} x `shiftL` i = x `shift` i unsafeShiftL :: a -> Int -> a {-# INLINE unsafeShiftL #-} x `unsafeShiftL` i = x `shiftL` i shiftR :: a -> Int -> a {-# INLINE shiftR #-} x `shiftR` i = x `shift` (- i) unsafeShiftR :: a -> Int -> a {-# INLINE unsafeShiftR #-} x `unsafeShiftR` i = x `shiftR` i rotateL :: a -> Int -> a {-# INLINE rotateL #-} x `rotateL` i = x `rotate` i rotateR :: a -> Int -> a {-# INLINE rotateR #-} x `rotateR` i = x `rotate` (- i) popCount :: a -> Int",79,292,2025-11-07 11:49:39.249195,2025-11-07 11:49:39.249195 ghc,unknown,GHC.Bits,FiniteBits,libraries/base/GHC/Bits.hs:297:17-26,"class Bits b => FiniteBits b where finiteBitSize :: b -> Int countLeadingZeros :: b -> Int countLeadingZeros x = (w - 1) - go (w - 1) where go i | i < 0 = i | testBit x i = i | otherwise = go (i - 1) w = finiteBitSize x countTrailingZeros :: b -> Int countTrailingZeros x = go 0 where go i | i >= w = i | testBit x i = i | otherwise = go (i + 1) w = finiteBitSize x",297,365,2025-11-07 11:49:39.249234,2025-11-07 11:49:39.249234 ghc,unknown,GHC.Records,HasField,libraries/base/GHC/Records.hs:36:7-14,"class HasField x r a | x r -> a where getField :: r -> a",36,38,2025-11-07 11:49:39.249245,2025-11-07 11:49:39.249245 ghc,unknown,GHC.TypeNats,KnownNat,libraries/base/GHC/TypeNats.hs:69:7-14,"class KnownNat (n :: Nat) where natSing :: SNat n",69,70,2025-11-07 11:49:39.249250,2025-11-07 11:49:39.249250 ghc,unknown,GHC.Real,Real,libraries/base/GHC/Real.hs:127:26-29,"class (Num a, Ord a) => Real a where toRational :: a -> Rational",127,129,2025-11-07 11:49:39.249255,2025-11-07 11:49:39.249255 ghc,unknown,GHC.Real,Integral,libraries/base/GHC/Real.hs:145:28-35,"class (Real a, Enum a) => Integral a where quot :: a -> a -> a rem :: a -> a -> a div :: a -> a -> a mod :: a -> a -> a quotRem :: a -> a -> (a, a) divMod :: a -> a -> (a, a) toInteger :: a -> Integer {-# INLINE quot #-} {-# INLINE rem #-} {-# INLINE div #-} {-# INLINE mod #-} n `quot` d = q where (q, _) = quotRem n d n `rem` d = r where (_, r) = quotRem n d n `div` d = q where (q, _) = divMod n d n `mod` d = r where (_, r) = divMod n d divMod n d = if signum r == negate (signum d) then (q - 1, r + d) else qr where qr@(q, r) = quotRem n d",145,175,2025-11-07 11:49:39.249260,2025-11-07 11:49:39.249260 ghc,unknown,GHC.Real,Fractional,libraries/base/GHC/Real.hs:188:19-28,"class (Num a) => Fractional a where {-# MINIMAL fromRational, (recip | (/)) #-} (/) :: a -> a -> a recip :: a -> a fromRational :: Rational -> a {-# INLINE recip #-} {-# INLINE (/) #-} recip x = 1 / x x / y = x * recip y",188,204,2025-11-07 11:49:39.249274,2025-11-07 11:49:39.249274 hedis,unknown,Database.Redis.Types,RedisArg,src/Database/Redis/Types.hs:26:7-14,"class RedisArg a where encode :: a -> ByteString",26,27,2025-11-07 11:50:12.251440,2025-11-07 11:50:12.251440 ghc,unknown,GHC.Real,RealFrac,libraries/base/GHC/Real.hs:207:34-41,"class (Real a, Fractional a) => RealFrac a where properFraction :: (Integral b) => a -> (b, a) truncate :: (Integral b) => a -> b round :: (Integral b) => a -> b ceiling :: (Integral b) => a -> b floor :: (Integral b) => a -> b {-# INLINE truncate #-} truncate x = m where (m, _) = properFraction x round x = let (n, r) = properFraction x m = if r < 0 then n - 1 else n + 1 in case signum (abs r - 0.5) of -1 -> n 0 -> if even n then n else m 1 -> m _ -> errorWithoutStackTrace ""round default defn: Bad value"" ceiling x = if r > 0 then n + 1 else n where (n, r) = properFraction x floor x = if r < 0 then n - 1 else n where (n, r) = properFraction x",207,244,2025-11-07 11:49:39.249281,2025-11-07 11:49:39.249281 ghc,unknown,GHC.StaticPtr,IsStatic,libraries/base/GHC/StaticPtr.hs:100:7-14,"class IsStatic p where fromStaticPtr :: StaticPtr a -> p a",100,101,2025-11-07 11:49:39.249294,2025-11-07 11:49:39.249294 ghc,unknown,GHC.OverloadedLabels,IsLabel,libraries/base/GHC/OverloadedLabels.hs:51:7-13,"class IsLabel (x :: Symbol) a where fromLabel :: a",51,52,2025-11-07 11:49:39.249299,2025-11-07 11:49:39.249299 ghc,unknown,GHC.Read,Read,libraries/base/GHC/Read.hs:184:7-10,"class Read a where {-# MINIMAL readsPrec | readPrec #-} readsPrec :: Int "" the operator precedence of the enclosing context (a number from @0@ to @11@). Function application has precedence @10@."" -> ReadS a readList :: ReadS [a] readPrec :: ReadPrec a readListPrec :: ReadPrec [a] readsPrec = readPrec_to_S readPrec readList = readPrec_to_S (list readPrec) 0 readPrec = readS_to_Prec readsPrec readListPrec = readS_to_Prec (\ _ -> readList)",184,224,2025-11-07 11:49:39.249305,2025-11-07 11:49:39.249305 ghc,unknown,GHC.Generics,Datatype,libraries/base/GHC/Generics.hs:1145:7-14,"class Datatype d where datatypeName :: t d (f :: k -> Type) (a :: k) -> [Char] moduleName :: t d (f :: k -> Type) (a :: k) -> [Char] packageName :: t d (f :: k -> Type) (a :: k) -> [Char] isNewtype :: t d (f :: k -> Type) (a :: k) -> Bool isNewtype _ = False",1145,1158,2025-11-07 11:49:39.249319,2025-11-07 11:49:39.249319 ghc,unknown,GHC.Generics,Constructor,libraries/base/GHC/Generics.hs:1169:7-17,"class Constructor c where conName :: t c (f :: k -> Type) (a :: k) -> [Char] conFixity :: t c (f :: k -> Type) (a :: k) -> Fixity conFixity _ = Prefix conIsRecord :: t c (f :: k -> Type) (a :: k) -> Bool conIsRecord _ = False",1169,1179,2025-11-07 11:49:39.249326,2025-11-07 11:49:39.249326 ghc,unknown,GHC.Generics,Selector,libraries/base/GHC/Generics.hs:1308:7-14,"class Selector s where selName :: t s (f :: k -> Type) (a :: k) -> [Char] selSourceUnpackedness :: t s (f :: k -> Type) (a :: k) -> SourceUnpackedness selSourceStrictness :: t s (f :: k -> Type) (a :: k) -> SourceStrictness selDecidedStrictness :: t s (f :: k -> Type) (a :: k) -> DecidedStrictness",1308,1322,2025-11-07 11:49:39.249333,2025-11-07 11:49:39.249333 ghc,unknown,GHC.Generics,Generic,libraries/base/GHC/Generics.hs:1341:7-13,"class Generic a where type Rep a :: Type -> Type from :: a -> (Rep a) x to :: (Rep a) x -> a",1341,1347,2025-11-07 11:49:39.249340,2025-11-07 11:49:39.249340 ghc,unknown,GHC.Generics,Generic1,libraries/base/GHC/Generics.hs:1360:7-14,"class Generic1 (f :: k -> Type) where type Rep1 f :: k -> Type from1 :: f a -> (Rep1 f) a to1 :: (Rep1 f) a -> f a",1360,1366,2025-11-07 11:49:39.249346,2025-11-07 11:49:39.249346 ghc,unknown,GHC.Generics,SingI,libraries/base/GHC/Generics.hs:1549:7-11,"class SingI (a :: k) where sing :: Sing a",1549,1552,2025-11-07 11:49:39.249351,2025-11-07 11:49:39.249351 ghc,unknown,GHC.Generics,SingKind,libraries/base/GHC/Generics.hs:1557:7-14,"class SingKind k where type DemoteRep k :: Type fromSing :: Sing (a :: k) -> DemoteRep k",1557,1563,2025-11-07 11:49:39.249356,2025-11-07 11:49:39.249356 ghc,unknown,GHC.Base,Semigroup,libraries/base/GHC/Base.hs:212:7-15,"class Semigroup a where (<>) :: a -> a -> a sconcat :: NonEmpty a -> a sconcat (a :| as) = go a as where go b (c : cs) = b <> go c cs go b [] = b stimes :: Integral b => b -> a -> a stimes = stimesDefault",212,246,2025-11-07 11:49:39.249361,2025-11-07 11:49:39.249361 ghc,unknown,GHC.Base,Monoid,libraries/base/GHC/Base.hs:266:22-27,"class Semigroup a => Monoid a where mempty :: a mappend :: a -> a -> a mappend = (<>) {-# INLINE mappend #-} mconcat :: [a] -> a mconcat = foldr mappend mempty {-# INLINE mconcat #-}",266,294,2025-11-07 11:49:39.249368,2025-11-07 11:49:39.249368 ghc,unknown,GHC.Base,Functor,libraries/base/GHC/Base.hs:519:7-13,"class Functor f where fmap :: (a -> b) -> f a -> f b (<$) :: a -> f b -> f a (<$) = fmap . const",519,576,2025-11-07 11:49:39.249374,2025-11-07 11:49:39.249374 ghc,unknown,GHC.Base,Applicative,libraries/base/GHC/Base.hs:642:20-30,"class Functor f => Applicative f where {-# MINIMAL pure, ((<*>) | liftA2) #-} pure :: a -> f a (<*>) :: f (a -> b) -> f a -> f b (<*>) = liftA2 id liftA2 :: (a -> b -> c) -> f a -> f b -> f c liftA2 f x = (<*>) (fmap f x) (*>) :: f a -> f b -> f b a1 *> a2 = (id <$ a1) <*> a2 (<*) :: f a -> f b -> f a (<*) = liftA2 const",642,721,2025-11-07 11:49:39.249379,2025-11-07 11:49:39.249379 ghc,unknown,GHC.Base,Monad,libraries/base/GHC/Base.hs:835:24-28,"class Applicative m => Monad m where (>>=) :: forall a b. m a -> (a -> m b) -> m b (>>) :: forall a b. m a -> m b -> m b m >> k = m >>= \ _ -> k {-# INLINE (>>) #-} return :: a -> m a return = pure",835,863,2025-11-07 11:49:39.249387,2025-11-07 11:49:39.249387 ghc,unknown,GHC.Base,Alternative,libraries/base/GHC/Base.hs:1067:24-34,"class Applicative f => Alternative f where empty :: f a (<|>) :: f a -> f a -> f a some :: f a -> f [a] some v = some_v where many_v = some_v <|> pure [] some_v = liftA2 (:) v many_v many :: f a -> f [a] many v = many_v where many_v = some_v <|> pure [] some_v = liftA2 (:) v many_v",1067,1085,2025-11-07 11:49:39.249406,2025-11-07 11:49:39.249406 ghc,unknown,GHC.Base,MonadPlus,libraries/base/GHC/Base.hs:1098:35-43,"class (Alternative m, Monad m) => MonadPlus m where mzero :: m a mzero = empty mplus :: m a -> m a -> m a mplus = (<|>)",1098,1118,2025-11-07 11:49:39.249414,2025-11-07 11:49:39.249414 ghc,unknown,GHC.Num,Num,libraries/base/GHC/Num.hs:63:8-10,"class Num a where {-# MINIMAL (+), (*), abs, signum, fromInteger, (negate | (-)) #-} (+), (-), (*) :: a -> a -> a negate :: a -> a abs :: a -> a signum :: a -> a fromInteger :: Integer -> a {-# INLINE (-) #-} {-# INLINE negate #-} x - y = x + negate y negate x = 0 - x",63,88,2025-11-07 11:49:39.249420,2025-11-07 11:49:39.249420 ghc,unknown,GHC.Base.hs-boot.class_code.json,Semigroup,libraries/base/GHC/Base.hs-boot:8:7-15,class Semigroup a,8,8,2025-11-07 11:49:39.249428,2025-11-07 11:49:39.249428 ghc,unknown,GHC.Base.hs-boot.class_code.json,Monoid,libraries/base/GHC/Base.hs-boot:9:7-12,class Monoid a,9,9,2025-11-07 11:49:39.249432,2025-11-07 11:49:39.249432 ghc,unknown,GHC.IO.Device,RawIO,libraries/base/GHC/IO/Device.hs:40:7-11,"class RawIO a where read :: a -> Ptr Word8 -> Word64 -> Int -> IO Int readNonBlocking :: a -> Ptr Word8 -> Word64 -> Int -> IO (Maybe Int) write :: a -> Ptr Word8 -> Word64 -> Int -> IO () writeNonBlocking :: a -> Ptr Word8 -> Word64 -> Int -> IO Int",40,59,2025-11-07 11:49:39.249438,2025-11-07 11:49:39.249438 ghc,unknown,Data.Functor.Classes,Eq1,libraries/base/Data/Functor/Classes.hs:91:7-9,"class Eq1 f where liftEq :: (a -> b -> Bool) -> f a -> f b -> Bool",91,100,2025-11-07 11:49:39.249639,2025-11-07 11:49:39.249639 ghc,unknown,Data.Functor.Classes,Ord1,libraries/base/Data/Functor/Classes.hs:111:18-21,"class (Eq1 f) => Ord1 f where liftCompare :: (a -> b -> Ordering) -> f a -> f b -> Ordering",111,120,2025-11-07 11:49:39.249644,2025-11-07 11:49:39.249644 ghc,unknown,GHC.IO.Device,IODevice,libraries/base/GHC/IO/Device.hs:63:7-14,"class IODevice a where ready :: a -> Bool -> Int -> IO Bool close :: a -> IO () isTerminal :: a -> IO Bool isTerminal _ = return False isSeekable :: a -> IO Bool isSeekable _ = return False seek :: a -> SeekMode -> Integer -> IO Integer seek _ _ _ = ioe_unsupportedOperation tell :: a -> IO Integer tell _ = ioe_unsupportedOperation getSize :: a -> IO Integer getSize _ = ioe_unsupportedOperation setSize :: a -> Integer -> IO () setSize _ _ = ioe_unsupportedOperation setEcho :: a -> Bool -> IO () setEcho _ _ = ioe_unsupportedOperation getEcho :: a -> IO Bool getEcho _ = ioe_unsupportedOperation setRaw :: a -> Bool -> IO () setRaw _ _ = ioe_unsupportedOperation devType :: a -> IO IODeviceType dup :: a -> IO a dup _ = ioe_unsupportedOperation dup2 :: a -> a -> IO a dup2 _ _ = ioe_unsupportedOperation",63,126,2025-11-07 11:49:39.249445,2025-11-07 11:49:39.249445 ghc,unknown,GHC.IO.BufferedIO,BufferedIO,libraries/base/GHC/IO/BufferedIO.hs:38:7-16,"class BufferedIO dev where newBuffer :: dev -> BufferState -> IO (Buffer Word8) fillReadBuffer :: dev -> Buffer Word8 -> IO (Int, Buffer Word8) fillReadBuffer0 :: dev -> Buffer Word8 -> IO (Maybe Int, Buffer Word8) emptyWriteBuffer :: dev -> Buffer Word8 -> IO (Buffer Word8) emptyWriteBuffer _dev buf = return buf {bufL = 0, bufR = 0, bufState = WriteBuffer} flushWriteBuffer :: dev -> Buffer Word8 -> IO (Buffer Word8) flushWriteBuffer0 :: dev -> Buffer Word8 -> IO (Int, Buffer Word8)",38,73,2025-11-07 11:49:39.249459,2025-11-07 11:49:39.249459 ghc,unknown,GHC.Exception.Type,Exception,libraries/base/GHC/Exception/Type.hs:131:31-39,"class (Typeable e, Show e) => Exception e where toException :: e -> SomeException fromException :: SomeException -> Maybe e toException = SomeException fromException (SomeException e) = cast e displayException :: e -> String displayException = show",131,144,2025-11-07 11:49:39.249469,2025-11-07 11:49:39.249469 ghc,unknown,Text.Printf,PrintfType,libraries/base/Text/Printf.hs:270:7-16,"class PrintfType t where spr :: String -> [UPrintf] -> t",270,271,2025-11-07 11:49:39.249477,2025-11-07 11:49:39.249477 ghc,unknown,Text.Printf,HPrintfType,libraries/base/Text/Printf.hs:276:7-17,"class HPrintfType t where hspr :: Handle -> String -> [UPrintf] -> t",276,277,2025-11-07 11:49:39.249482,2025-11-07 11:49:39.249482 ghc,unknown,Text.Printf,PrintfArg,libraries/base/Text/Printf.hs:316:7-15,"class PrintfArg a where formatArg :: a -> FieldFormatter parseFormat :: a -> ModifierParser parseFormat _ (c : cs) = FormatParse """" c cs parseFormat _ """" = errorShortFormat",316,322,2025-11-07 11:49:39.249486,2025-11-07 11:49:39.249486 ghc,unknown,Text.Printf,IsChar,libraries/base/Text/Printf.hs:405:7-12,"class IsChar c where toChar :: c -> Char fromChar :: Char -> c",405,409,2025-11-07 11:49:39.249497,2025-11-07 11:49:39.249497 ghc,unknown,Data.Bifunctor,Bifunctor,libraries/base/Data/Bifunctor.hs:68:7-15,"class Bifunctor p where {-# MINIMAL bimap | first, second #-} bimap :: (a -> b) -> (c -> d) -> p a c -> p b d bimap f g = first f . second g first :: (a -> b) -> p a c -> p b c first f = bimap f id second :: (b -> c) -> p a b -> p a c second = bimap id",68,113,2025-11-07 11:49:39.249502,2025-11-07 11:49:39.249502 ghc,unknown,Data.Data,Data,libraries/base/Data/Data.hs:231:21-24,"class Typeable a => Data a where gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) "" defines how nonempty constructor applications are folded. It takes the folded tail of the constructor application and its head, i.e., an immediate subterm, and combines them in some way."" -> (forall g. g -> c g) "" defines how the empty constructor application is folded, like the neutral \/ start element for list folding."" -> a "" structure to be folded."" -> c a "" result, with a type defined in terms of @a@, but variability is achieved by means of type constructor @c@ for the construction of the actual result type."" gfoldl _ z = z gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c a toConstr :: a -> Constr dataTypeOf :: a -> DataType dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c a) dataCast1 _ = Nothing dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c a) dataCast2 _ = Nothing gmapT :: (forall b. Data b => b -> b) -> a -> a gmapT f x0 = runIdentity (gfoldl k Identity x0) where k :: Data d => Identity (d -> b) -> d -> Identity b k (Identity c) x = Identity (c (f x)) gmapQl :: forall r r'. (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> a -> r gmapQl o r f = getConst . gfoldl k z where k :: Data d => Const r (d -> b) -> d -> Const r b k c x = Const $ (getConst c) `o` f x z :: g -> Const r g z _ = Const r gmapQr :: forall r r'. (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> a -> r gmapQr o r0 f x0 = unQr (gfoldl k (const (Qr id)) x0) r0 where k :: Data d => Qr r (d -> b) -> d -> Qr r b k (Qr c) x = Qr (\ r -> c (f x `o` r)) gmapQ :: (forall d. Data d => d -> u) -> a -> [u] gmapQ f = gmapQr (:) [] f gmapQi :: forall u. Int -> (forall d. Data d => d -> u) -> a -> u gmapQi i f x = case gfoldl k z x of Qi _ q -> fromJust q where k :: Data d => Qi u (d -> b) -> d -> Qi u b k (Qi i' q) a = Qi (i' + 1) (if i == i' then Just (f a) else q) z :: g -> Qi q g z _ = Qi 0 Nothing gmapM :: forall m. Monad m => (forall d. Data d => d -> m d) -> a -> m a gmapM f = gfoldl k return where k :: Data d => m (d -> b) -> d -> m b k c x = do c' <- c x' <- f x return (c' x') gmapMp :: forall m. MonadPlus m => (forall d. Data d => d -> m d) -> a -> m a gmapMp f x = unMp (gfoldl k z x) >>= \ (x', b) -> if b then return x' else mzero where z :: g -> Mp m g z g = Mp (return (g, False)) k :: Data d => Mp m (d -> b) -> d -> Mp m b k (Mp c) y = Mp (c >>= \ (h, b) -> (f y >>= \ y' -> return (h y', True)) `mplus` return (h y, b)) gmapMo :: forall m. MonadPlus m => (forall d. Data d => d -> m d) -> a -> m a gmapMo f x = unMp (gfoldl k z x) >>= \ (x', b) -> if b then return x' else mzero where z :: g -> Mp m g z g = Mp (return (g, False)) k :: Data d => Mp m (d -> b) -> d -> Mp m b k (Mp c) y = Mp (c >>= \ (h, b) -> if b then return (h y, b) else (f y >>= \ y' -> return (h y', True)) `mplus` return (h y, b))",231,444,2025-11-07 11:49:39.249510,2025-11-07 11:49:39.249510 ghc,unknown,Data.Bitraversable,Bitraversable,libraries/base/Data/Bitraversable.hs:100:38-50,"class (Bifunctor t, Bifoldable t) => Bitraversable t where bitraverse :: Applicative f => (a -> f c) -> (b -> f d) -> t a b -> f (t c d) bitraverse f g = bisequenceA . bimap f g",100,130,2025-11-07 11:49:39.249566,2025-11-07 11:49:39.249566 ghc,unknown,Data.String,IsString,libraries/base/Data/String.hs:41:7-14,"class IsString a where fromString :: String -> a",41,42,2025-11-07 11:49:39.249573,2025-11-07 11:49:39.249573 ghc,unknown,Data.Foldable,Foldable,libraries/base/Data/Foldable.hs:160:7-14,"class Foldable t where {-# MINIMAL foldMap | foldr #-} fold :: Monoid m => t m -> m fold = foldMap id foldMap :: Monoid m => (a -> m) -> t a -> m {-# INLINE foldMap #-} foldMap f = foldr (mappend . f) mempty foldMap' :: Monoid m => (a -> m) -> t a -> m foldMap' f = foldl' (\ acc a -> acc <> f a) mempty foldr :: (a -> b -> b) -> b -> t a -> b foldr f z t = appEndo (foldMap (Endo #. f) t) z foldr' :: (a -> b -> b) -> b -> t a -> b foldr' f z0 xs = foldl f' id xs z0 where f' k x z = k $! f x z foldl :: (b -> a -> b) -> b -> t a -> b foldl f z t = appEndo (getDual (foldMap (Dual . Endo . flip f) t)) z foldl' :: (b -> a -> b) -> b -> t a -> b foldl' f z0 xs = foldr f' id xs z0 where f' x k z = k $! f z x foldr1 :: (a -> a -> a) -> t a -> a foldr1 f xs = fromMaybe (errorWithoutStackTrace ""foldr1: empty structure"") (foldr mf Nothing xs) where mf x m = Just (case m of Nothing -> x Just y -> f x y) foldl1 :: (a -> a -> a) -> t a -> a foldl1 f xs = fromMaybe (errorWithoutStackTrace ""foldl1: empty structure"") (foldl mf Nothing xs) where mf m y = Just (case m of Nothing -> y Just x -> f x y) toList :: t a -> [a] {-# INLINE toList #-} toList t = build (\ c n -> foldr c n t) null :: t a -> Bool null = foldr (\ _ _ -> False) True length :: t a -> Int length = foldl' (\ c _ -> c + 1) 0 elem :: Eq a => a -> t a -> Bool elem = any . (==) maximum :: forall a. Ord a => t a -> a maximum = fromMaybe (errorWithoutStackTrace ""maximum: empty structure"") . getMax . foldMap' (Max #. (Just :: a -> Maybe a)) {-# INLINEABLE maximum #-} minimum :: forall a. Ord a => t a -> a minimum = fromMaybe (errorWithoutStackTrace ""minimum: empty structure"") . getMin . foldMap' (Min #. (Just :: a -> Maybe a)) {-# INLINEABLE minimum #-} sum :: Num a => t a -> a sum = getSum #. foldMap' Sum {-# INLINEABLE sum #-} product :: Num a => t a -> a product = getProduct #. foldMap' Product {-# INLINEABLE product #-}",160,695,2025-11-07 11:49:39.249578,2025-11-07 11:49:39.249578 ghc,unknown,Data.Bifoldable,Bifoldable,libraries/base/Data/Bifoldable.hs:108:7-16,"class Bifoldable p where {-# MINIMAL bifoldr | bifoldMap #-} bifold :: Monoid m => p m m -> m bifold = bifoldMap id id bifoldMap :: Monoid m => (a -> m) -> (b -> m) -> p a b -> m bifoldMap f g = bifoldr (mappend . f) (mappend . g) mempty bifoldr :: (a -> c -> c) -> (b -> c -> c) -> c -> p a b -> c bifoldr f g z t = appEndo (bifoldMap (Endo #. f) (Endo #. g) t) z bifoldl :: (c -> a -> c) -> (c -> b -> c) -> c -> p a b -> c bifoldl f g z t = appEndo (getDual (bifoldMap (Dual . Endo . flip f) (Dual . Endo . flip g) t)) z",108,222,2025-11-07 11:49:39.249607,2025-11-07 11:49:39.249607 ghc,unknown,Data.Traversable,Traversable,libraries/base/Data/Traversable.hs:137:34-44,"class (Functor t, Foldable t) => Traversable t where {-# MINIMAL traverse | sequenceA #-} traverse :: Applicative f => (a -> f b) -> t a -> f (t b) {-# INLINE traverse #-} traverse f = sequenceA . fmap f sequenceA :: Applicative f => t (f a) -> f (t a) {-# INLINE sequenceA #-} sequenceA = traverse id mapM :: Monad m => (a -> m b) -> t a -> m (t b) {-# INLINE mapM #-} mapM = traverse sequence :: Monad m => t (m a) -> m (t a) {-# INLINE sequence #-} sequence = sequenceA",137,246,2025-11-07 11:49:39.249617,2025-11-07 11:49:39.249617 ghc,unknown,Data.Fixed,HasResolution,libraries/base/Data/Fixed.hs:83:7-19,"class HasResolution (a :: k) where resolution :: p a -> Integer",83,84,2025-11-07 11:49:39.249628,2025-11-07 11:49:39.249628 ghc,unknown,Data.Functor.Classes,Read1,libraries/base/Data/Functor/Classes.hs:144:7-11,"class Read1 f where {-# MINIMAL liftReadsPrec | liftReadPrec #-} liftReadsPrec :: (Int -> ReadS a) -> ReadS [a] -> Int -> ReadS (f a) liftReadsPrec rp rl = readPrec_to_S $ liftReadPrec (readS_to_Prec rp) (readS_to_Prec (const rl)) liftReadList :: (Int -> ReadS a) -> ReadS [a] -> ReadS [f a] liftReadList rp rl = readPrec_to_S (list $ liftReadPrec (readS_to_Prec rp) (readS_to_Prec (const rl))) 0 liftReadPrec :: ReadPrec a -> ReadPrec [a] -> ReadPrec (f a) liftReadPrec rp rl = readS_to_Prec $ liftReadsPrec (readPrec_to_S rp) (readPrec_to_S rl 0) liftReadListPrec :: ReadPrec a -> ReadPrec [a] -> ReadPrec [f a] liftReadListPrec rp rl = readS_to_Prec $ \ _ -> liftReadList (readPrec_to_S rp) (readPrec_to_S rl 0)",144,183,2025-11-07 11:49:39.249649,2025-11-07 11:49:39.249649 ghc,unknown,Data.Functor.Classes,Show1,libraries/base/Data/Functor/Classes.hs:219:7-11,"class Show1 f where liftShowsPrec :: (Int -> a -> ShowS) -> ([a] -> ShowS) -> Int -> f a -> ShowS liftShowList :: (Int -> a -> ShowS) -> ([a] -> ShowS) -> [f a] -> ShowS liftShowList sp sl = showListWith (liftShowsPrec sp sl 0)",219,235,2025-11-07 11:49:39.249662,2025-11-07 11:49:39.249662 ghc,unknown,Data.Functor.Classes,Eq2,libraries/base/Data/Functor/Classes.hs:247:7-9,"class Eq2 f where liftEq2 :: (a -> b -> Bool) -> (c -> d -> Bool) -> f a c -> f b d -> Bool",247,256,2025-11-07 11:49:39.249669,2025-11-07 11:49:39.249669 ghc,unknown,Data.Functor.Classes,Ord2,libraries/base/Data/Functor/Classes.hs:267:18-21,"class (Eq2 f) => Ord2 f where liftCompare2 :: (a -> b -> Ordering) -> (c -> d -> Ordering) -> f a c -> f b d -> Ordering",267,277,2025-11-07 11:49:39.249674,2025-11-07 11:49:39.249674 ghc,unknown,Data.Functor.Classes,Read2,libraries/base/Data/Functor/Classes.hs:301:7-11,"class Read2 f where {-# MINIMAL liftReadsPrec2 | liftReadPrec2 #-} liftReadsPrec2 :: (Int -> ReadS a) -> ReadS [a] -> (Int -> ReadS b) -> ReadS [b] -> Int -> ReadS (f a b) liftReadsPrec2 rp1 rl1 rp2 rl2 = readPrec_to_S $ liftReadPrec2 (readS_to_Prec rp1) (readS_to_Prec (const rl1)) (readS_to_Prec rp2) (readS_to_Prec (const rl2)) liftReadList2 :: (Int -> ReadS a) -> ReadS [a] -> (Int -> ReadS b) -> ReadS [b] -> ReadS [f a b] liftReadList2 rp1 rl1 rp2 rl2 = readPrec_to_S (list $ liftReadPrec2 (readS_to_Prec rp1) (readS_to_Prec (const rl1)) (readS_to_Prec rp2) (readS_to_Prec (const rl2))) 0 liftReadPrec2 :: ReadPrec a -> ReadPrec [a] -> ReadPrec b -> ReadPrec [b] -> ReadPrec (f a b) liftReadPrec2 rp1 rl1 rp2 rl2 = readS_to_Prec $ liftReadsPrec2 (readPrec_to_S rp1) (readPrec_to_S rl1 0) (readPrec_to_S rp2) (readPrec_to_S rl2 0) liftReadListPrec2 :: ReadPrec a -> ReadPrec [a] -> ReadPrec b -> ReadPrec [b] -> ReadPrec [f a b] liftReadListPrec2 rp1 rl1 rp2 rl2 = readS_to_Prec $ \ _ -> liftReadList2 (readPrec_to_S rp1) (readPrec_to_S rl1 0) (readPrec_to_S rp2) (readPrec_to_S rl2 0)",301,348,2025-11-07 11:49:39.249680,2025-11-07 11:49:39.249680 ghc,unknown,Data.Functor.Classes,Show2,libraries/base/Data/Functor/Classes.hs:384:7-11,"class Show2 f where liftShowsPrec2 :: (Int -> a -> ShowS) -> ([a] -> ShowS) -> (Int -> b -> ShowS) -> ([b] -> ShowS) -> Int -> f a b -> ShowS liftShowList2 :: (Int -> a -> ShowS) -> ([a] -> ShowS) -> (Int -> b -> ShowS) -> ([b] -> ShowS) -> [f a b] -> ShowS liftShowList2 sp1 sl1 sp2 sl2 = showListWith (liftShowsPrec2 sp1 sl1 sp2 sl2 0)",384,401,2025-11-07 11:49:39.249711,2025-11-07 11:49:39.249711 ghc,unknown,Data.Typeable.Internal,Typeable,libraries/base/Data/Typeable/Internal.hs:776:7-14,"class Typeable (a :: k) where typeRep# :: TypeRep a",776,777,2025-11-07 11:49:39.249721,2025-11-07 11:49:39.249721 ghc,unknown,Data.Type.Equality,TestEquality,libraries/base/Data/Type/Equality.hs:150:7-18,"class TestEquality f where testEquality :: f a -> f b -> Maybe (a :~: b)",150,152,2025-11-07 11:49:39.249726,2025-11-07 11:49:39.249726 ghc,unknown,Data.Type.Coercion,TestCoercion,libraries/base/Data/Type/Coercion.hs:103:7-18,"class TestCoercion f where testCoercion :: f a -> f b -> Maybe (Coercion a b)",103,105,2025-11-07 11:49:39.249732,2025-11-07 11:49:39.249732 ghc,unknown,Foreign.Storable,Storable,libraries/base/Foreign/Storable.hs:75:7-14,"class Storable a where {-# MINIMAL sizeOf, alignment, (peek | peekElemOff | peekByteOff), (poke | pokeElemOff | pokeByteOff) #-} sizeOf :: a -> Int alignment :: a -> Int peekElemOff :: Ptr a -> Int -> IO a pokeElemOff :: Ptr a -> Int -> a -> IO () peekByteOff :: Ptr b -> Int -> IO a pokeByteOff :: Ptr b -> Int -> a -> IO () peek :: Ptr a -> IO a poke :: Ptr a -> a -> IO () peekElemOff = peekElemOff_ undefined where peekElemOff_ :: a -> Ptr a -> Int -> IO a peekElemOff_ undef ptr off = peekByteOff ptr (off * sizeOf undef) pokeElemOff ptr off val = pokeByteOff ptr (off * sizeOf val) val peekByteOff ptr off = peek (ptr `plusPtr` off) pokeByteOff ptr off = poke (ptr `plusPtr` off) peek ptr = peekElemOff ptr 0 poke ptr = pokeElemOff ptr 0",75,148,2025-11-07 11:49:39.249737,2025-11-07 11:49:39.249737 ghc,unknown,Control.Arrow,Arrow,libraries/base/Control/Arrow.hs:92:21-25,"class Category a => Arrow a where {-# MINIMAL arr, (first | (***)) #-} arr :: (b -> c) -> a b c first :: a b c -> a (b, d) (c, d) first = (*** id) second :: a b c -> a (d, b) (d, c) second = (id ***) (***) :: a b c -> a b' c' -> a (b, b') (c, c') f *** g = first f >>> arr swap >>> first g >>> arr swap where swap ~(x, y) = (y, x) (&&&) :: a b c -> a b c' -> a b (c, c') f &&& g = arr (\ b -> (b, b)) >>> f *** g",92,125,2025-11-07 11:49:39.249750,2025-11-07 11:49:39.249750 ghc,unknown,Control.Arrow,ArrowZero,libraries/base/Control/Arrow.hs:226:18-26,"class Arrow a => ArrowZero a where zeroArrow :: a b c",226,227,2025-11-07 11:49:39.249759,2025-11-07 11:49:39.249759 ghc,unknown,Control.Arrow,ArrowPlus,libraries/base/Control/Arrow.hs:234:22-30,"class ArrowZero a => ArrowPlus a where (<+>) :: a b c -> a b c -> a b c",234,236,2025-11-07 11:49:39.249764,2025-11-07 11:49:39.249764 ghc,unknown,Control.Arrow,ArrowChoice,libraries/base/Control/Arrow.hs:266:18-28,"class Arrow a => ArrowChoice a where {-# MINIMAL (left | (+++)) #-} left :: a b c -> a (Either b d) (Either c d) left = (+++ id) right :: a b c -> a (Either d b) (Either d c) right = (id +++) (+++) :: a b c -> a b' c' -> a (Either b b') (Either c c') f +++ g = left f >>> arr mirror >>> left g >>> arr mirror where mirror :: Either x y -> Either y x mirror (Left x) = Right x mirror (Right y) = Left y (|||) :: a b d -> a c d -> a (Either b c) d f ||| g = f +++ g >>> arr untag where untag (Left x) = x untag (Right y) = y",266,303,2025-11-07 11:49:39.249769,2025-11-07 11:49:39.249769 ghc,unknown,Control.Arrow,ArrowApply,libraries/base/Control/Arrow.hs:345:18-27,"class Arrow a => ArrowApply a where app :: a (a b c, b) c",345,346,2025-11-07 11:49:39.249779,2025-11-07 11:49:39.249779 ghc,unknown,Control.Arrow,ArrowLoop,libraries/base/Control/Arrow.hs:418:18-26,"class Arrow a => ArrowLoop a where loop :: a (b, d) (c, d) -> a b c",418,419,2025-11-07 11:49:39.249784,2025-11-07 11:49:39.249784 ghc,unknown,Control.Category,Category,libraries/base/Control/Category.hs:37:7-14,"class Category cat where id :: cat a a (.) :: cat b c -> cat a b -> cat a c",37,42,2025-11-07 11:49:39.249789,2025-11-07 11:49:39.249789 ghc,unknown,Language.Haskell.Syntax.Extension,WrapXRec,compiler/Language/Haskell/Syntax/Extension.hs:148:7-14,"class WrapXRec p a where wrapXRec :: a -> XRec p a",148,149,2025-11-07 11:49:39.250210,2025-11-07 11:49:39.250210 syb,unknown,GetC,TypeUnify,tests/GetC.hs:127:10-18,"class TypeUnify a b | a -> b, b -> a",127,127,2025-11-07 11:55:36.962010,2025-11-07 11:55:36.962010 ghc,unknown,Control.Monad.Zip,MonadZip,libraries/base/Control/Monad/Zip.hs:43:18-25,"class Monad m => MonadZip m where {-# MINIMAL mzip | mzipWith #-} mzip :: m a -> m b -> m (a, b) mzip = mzipWith (,) mzipWith :: (a -> b -> c) -> m a -> m b -> m c mzipWith f ma mb = liftM (uncurry f) (mzip ma mb) munzip :: m (a, b) -> (m a, m b) munzip mab = (liftM fst mab, liftM snd mab)",43,53,2025-11-07 11:49:39.249794,2025-11-07 11:49:39.249794 ghc,unknown,Control.Monad.Fail,MonadFail,libraries/base/Control/Monad/Fail.hs:65:18-26,"class Monad m => MonadFail m where fail :: String -> m a",65,66,2025-11-07 11:49:39.249802,2025-11-07 11:49:39.249802 ghc,unknown,Control.Monad.Fix,MonadFix,libraries/base/Control/Monad/Fix.hs:58:20-27,"class (Monad m) => MonadFix m where mfix :: (a -> m a) -> m a",58,63,2025-11-07 11:49:39.249807,2025-11-07 11:49:39.249807 ghc,unknown,Control.Monad.IO.Class,MonadIO,libraries/base/Control/Monad/IO/Class.hs:31:20-26,"class (Monad m) => MonadIO m where liftIO :: IO a -> m a",31,66,2025-11-07 11:49:39.249813,2025-11-07 11:49:39.249813 ghc,unknown,Distribution.Pretty,Pretty,libraries/Cabal/Cabal/src/Distribution/Pretty.hs:22:7-12,"class Pretty a where pretty :: a -> PP.Doc prettyVersioned :: CabalSpecVersion -> a -> PP.Doc prettyVersioned _ = pretty",22,26,2025-11-07 11:49:39.249818,2025-11-07 11:49:39.249818 ghc,unknown,Distribution.Package,Package,libraries/Cabal/Cabal/src/Distribution/Package.hs:61:7-13,"class Package pkg where packageId :: pkg -> PackageIdentifier",61,62,2025-11-07 11:49:39.249825,2025-11-07 11:49:39.249825 ghc,unknown,Distribution.Package,HasMungedPackageId,libraries/Cabal/Cabal/src/Distribution/Package.hs:70:7-24,"class HasMungedPackageId pkg where mungedId :: pkg -> MungedPackageId",70,71,2025-11-07 11:49:39.249830,2025-11-07 11:49:39.249830 ghc,unknown,Distribution.Package,HasUnitId,libraries/Cabal/Cabal/src/Distribution/Package.hs:86:22-30,"class Package pkg => HasUnitId pkg where installedUnitId :: pkg -> UnitId",86,87,2025-11-07 11:49:39.249835,2025-11-07 11:49:39.249835 ghc,unknown,Distribution.Package,PackageInstalled,libraries/Cabal/Cabal/src/Distribution/Package.hs:95:26-41,"class (HasUnitId pkg) => PackageInstalled pkg where installedDepends :: pkg -> [UnitId]",95,96,2025-11-07 11:49:39.249840,2025-11-07 11:49:39.249840 ghc,unknown,Distribution.Parsec,Parsec,libraries/Cabal/Cabal/src/Distribution/Parsec.hs:76:7-12,"class Parsec a where parsec :: CabalParsing m => m a",76,77,2025-11-07 11:49:39.249846,2025-11-07 11:49:39.249846 ghc,unknown,Distribution.Parsec,CabalParsing,libraries/Cabal/Cabal/src/Distribution/Parsec.hs:85:59-70,"class (P.CharParsing m, MonadPlus m, Fail.MonadFail m) => CabalParsing m where parsecWarning :: PWarnType -> String -> m () parsecHaskellString :: m String parsecHaskellString = stringLiteral askCabalSpecVersion :: m CabalSpecVersion",85,91,2025-11-07 11:49:39.249851,2025-11-07 11:49:39.249851 ghc,unknown,Distribution.Compat.Parsing,Parsing,libraries/Cabal/Cabal/src/Distribution/Compat/Parsing.hs:209:24-30,"class Alternative m => Parsing m where try :: m a -> m a () :: m a -> String -> m a skipMany :: m a -> m () skipMany p = () <$ many p {-# INLINE skipMany #-} skipSome :: m a -> m () skipSome p = p *> skipMany p {-# INLINE skipSome #-} unexpected :: String -> m a eof :: m () notFollowedBy :: Show a => m a -> m ()",209,247,2025-11-07 11:49:39.249858,2025-11-07 11:49:39.249858 ghc,unknown,Distribution.Compat.Semigroup,GSemigroup,libraries/Cabal/Cabal/src/Distribution/Compat/Semigroup.hs:85:7-16,"class GSemigroup f where gmappend' :: f p -> f p -> f p",85,86,2025-11-07 11:49:39.249867,2025-11-07 11:49:39.249867 ghc,unknown,Distribution.Compat.Semigroup,GMonoid,libraries/Cabal/Cabal/src/Distribution/Compat/Semigroup.hs:109:23-29,"class GSemigroup f => GMonoid f where gmempty' :: f p",109,110,2025-11-07 11:49:39.249885,2025-11-07 11:49:39.249885 ghc,unknown,Distribution.Compat.Prelude,GNFData,libraries/Cabal/Cabal/src/Distribution/Compat/Prelude.hs:248:7-13,"class GNFData f where grnf :: f a -> ()",248,249,2025-11-07 11:49:39.249891,2025-11-07 11:49:39.249891 ghc,unknown,Distribution.Compat.CharParsing,CharParsing,libraries/Cabal/Cabal/src/Distribution/Compat/CharParsing.hs:149:20-30,"class Parsing m => CharParsing m where satisfy :: (Char -> Bool) -> m Char char :: Char -> m Char char c = satisfy (c ==) show [c] {-# INLINE char #-} notChar :: Char -> m Char notChar c = satisfy (c /=) {-# INLINE notChar #-} anyChar :: m Char anyChar = satisfy (const True) {-# INLINE anyChar #-} string :: String -> m String string s = s <$ try (traverse_ char s) show s {-# INLINE string #-} text :: Text -> m Text text t = t <$ string (unpack t) {-# INLINE text #-}",149,192,2025-11-07 11:49:39.249896,2025-11-07 11:49:39.249896 ghc,unknown,Distribution.Compat.Newtype,Newtype,libraries/Cabal/Cabal/src/Distribution/Compat/Newtype.hs:40:7-13,"class Newtype o n | n -> o where pack :: o -> n default pack :: Coercible o n => o -> n pack = coerce unpack :: n -> o default unpack :: Coercible n o => n -> o unpack = coerce",40,53,2025-11-07 11:49:39.249907,2025-11-07 11:49:39.249907 ghc,unknown,Distribution.Compat.Graph,IsNode,libraries/Cabal/Cabal/src/Distribution/Compat/Graph.hs:175:22-27,"class Ord (Key a) => IsNode a where type Key a nodeKey :: a -> Key a nodeNeighbors :: a -> [Key a]",175,178,2025-11-07 11:49:39.249914,2025-11-07 11:49:39.249914 ghc,unknown,Distribution.Types.BuildInfo.Lens,HasBuildInfo,libraries/Cabal/Cabal/src/Distribution/Types/BuildInfo/Lens.hs:25:7-18,"class HasBuildInfo a where buildInfo :: Lens' a BuildInfo buildable :: Lens' a Bool buildable = buildInfo . buildable {-# INLINE buildable #-} buildTools :: Lens' a [LegacyExeDependency] buildTools = buildInfo . buildTools {-# INLINE buildTools #-} buildToolDepends :: Lens' a [ExeDependency] buildToolDepends = buildInfo . buildToolDepends {-# INLINE buildToolDepends #-} cppOptions :: Lens' a [String] cppOptions = buildInfo . cppOptions {-# INLINE cppOptions #-} asmOptions :: Lens' a [String] asmOptions = buildInfo . asmOptions {-# INLINE asmOptions #-} cmmOptions :: Lens' a [String] cmmOptions = buildInfo . cmmOptions {-# INLINE cmmOptions #-} ccOptions :: Lens' a [String] ccOptions = buildInfo . ccOptions {-# INLINE ccOptions #-} cxxOptions :: Lens' a [String] cxxOptions = buildInfo . cxxOptions {-# INLINE cxxOptions #-} ldOptions :: Lens' a [String] ldOptions = buildInfo . ldOptions {-# INLINE ldOptions #-} hsc2hsOptions :: Lens' a [String] hsc2hsOptions = buildInfo . hsc2hsOptions {-# INLINE hsc2hsOptions #-} pkgconfigDepends :: Lens' a [PkgconfigDependency] pkgconfigDepends = buildInfo . pkgconfigDepends {-# INLINE pkgconfigDepends #-} frameworks :: Lens' a [String] frameworks = buildInfo . frameworks {-# INLINE frameworks #-} extraFrameworkDirs :: Lens' a [String] extraFrameworkDirs = buildInfo . extraFrameworkDirs {-# INLINE extraFrameworkDirs #-} asmSources :: Lens' a [FilePath] asmSources = buildInfo . asmSources {-# INLINE asmSources #-} cmmSources :: Lens' a [FilePath] cmmSources = buildInfo . cmmSources {-# INLINE cmmSources #-} cSources :: Lens' a [FilePath] cSources = buildInfo . cSources {-# INLINE cSources #-} cxxSources :: Lens' a [FilePath] cxxSources = buildInfo . cxxSources {-# INLINE cxxSources #-} jsSources :: Lens' a [FilePath] jsSources = buildInfo . jsSources {-# INLINE jsSources #-} hsSourceDirs :: Lens' a [SymbolicPath PackageDir SourceDir] hsSourceDirs = buildInfo . hsSourceDirs {-# INLINE hsSourceDirs #-} otherModules :: Lens' a [ModuleName] otherModules = buildInfo . otherModules {-# INLINE otherModules #-} virtualModules :: Lens' a [ModuleName] virtualModules = buildInfo . virtualModules {-# INLINE virtualModules #-} autogenModules :: Lens' a [ModuleName] autogenModules = buildInfo . autogenModules {-# INLINE autogenModules #-} defaultLanguage :: Lens' a (Maybe Language) defaultLanguage = buildInfo . defaultLanguage {-# INLINE defaultLanguage #-} otherLanguages :: Lens' a [Language] otherLanguages = buildInfo . otherLanguages {-# INLINE otherLanguages #-} defaultExtensions :: Lens' a [Extension] defaultExtensions = buildInfo . defaultExtensions {-# INLINE defaultExtensions #-} otherExtensions :: Lens' a [Extension] otherExtensions = buildInfo . otherExtensions {-# INLINE otherExtensions #-} oldExtensions :: Lens' a [Extension] oldExtensions = buildInfo . oldExtensions {-# INLINE oldExtensions #-} extraLibs :: Lens' a [String] extraLibs = buildInfo . extraLibs {-# INLINE extraLibs #-} extraGHCiLibs :: Lens' a [String] extraGHCiLibs = buildInfo . extraGHCiLibs {-# INLINE extraGHCiLibs #-} extraBundledLibs :: Lens' a [String] extraBundledLibs = buildInfo . extraBundledLibs {-# INLINE extraBundledLibs #-} extraLibFlavours :: Lens' a [String] extraLibFlavours = buildInfo . extraLibFlavours {-# INLINE extraLibFlavours #-} extraDynLibFlavours :: Lens' a [String] extraDynLibFlavours = buildInfo . extraDynLibFlavours {-# INLINE extraDynLibFlavours #-} extraLibDirs :: Lens' a [String] extraLibDirs = buildInfo . extraLibDirs {-# INLINE extraLibDirs #-} includeDirs :: Lens' a [FilePath] includeDirs = buildInfo . includeDirs {-# INLINE includeDirs #-} includes :: Lens' a [FilePath] includes = buildInfo . includes {-# INLINE includes #-} autogenIncludes :: Lens' a [FilePath] autogenIncludes = buildInfo . autogenIncludes {-# INLINE autogenIncludes #-} installIncludes :: Lens' a [FilePath] installIncludes = buildInfo . installIncludes {-# INLINE installIncludes #-} options :: Lens' a (PerCompilerFlavor [String]) options = buildInfo . options {-# INLINE options #-} profOptions :: Lens' a (PerCompilerFlavor [String]) profOptions = buildInfo . profOptions {-# INLINE profOptions #-} sharedOptions :: Lens' a (PerCompilerFlavor [String]) sharedOptions = buildInfo . sharedOptions {-# INLINE sharedOptions #-} staticOptions :: Lens' a (PerCompilerFlavor [String]) staticOptions = buildInfo . staticOptions {-# INLINE staticOptions #-} customFieldsBI :: Lens' a [(String, String)] customFieldsBI = buildInfo . customFieldsBI {-# INLINE customFieldsBI #-} targetBuildDepends :: Lens' a [Dependency] targetBuildDepends = buildInfo . targetBuildDepends {-# INLINE targetBuildDepends #-} mixins :: Lens' a [Mixin] mixins = buildInfo . mixins {-# INLINE mixins #-}",25,202,2025-11-07 11:49:39.249919,2025-11-07 11:49:39.249919 ghc,unknown,Distribution.Types.BuildInfo.Lens,HasBuildInfos,libraries/Cabal/Cabal/src/Distribution/Types/BuildInfo/Lens.hs:341:7-19,"class HasBuildInfos a where traverseBuildInfos :: Traversal' a BuildInfo",341,342,2025-11-07 11:49:39.249984,2025-11-07 11:49:39.249984 ghc,unknown,Distribution.PackageDescription.Parsec,FromBuildInfo,libraries/Cabal/Cabal/src/Distribution/PackageDescription/Parsec.hs:564:27-39,"class L.HasBuildInfo a => FromBuildInfo a where fromBuildInfo' :: UnqualComponentName -> BuildInfo -> a",564,565,2025-11-07 11:49:39.249993,2025-11-07 11:49:39.249993 ghc,unknown,Distribution.FieldGrammar.Newtypes,Sep,libraries/Cabal/Cabal/src/Distribution/FieldGrammar/Newtypes.hs:74:10-12,"class Sep sep where prettySep :: Proxy sep -> [Doc] -> Doc parseSep :: CabalParsing m => Proxy sep -> m a -> m [a] parseSepNE :: CabalParsing m => Proxy sep -> m a -> m (NonEmpty a)",74,78,2025-11-07 11:49:39.249999,2025-11-07 11:49:39.249999 ghc,unknown,GHC.ThToHs,CvtFlag,compiler/GHC/ThToHs.hs:1395:7-13,"class CvtFlag flag flag' | flag -> flag' where cvtFlag :: flag -> flag'",1395,1396,2025-11-07 11:49:39.250216,2025-11-07 11:49:39.250216 ghc,unknown,GHC.Cmm.Expr,UserOfRegs,compiler/GHC/Cmm/Expr.hs:350:16-25,"class Ord r => UserOfRegs r a where foldRegsUsed :: Platform -> (b -> r -> b) -> b -> a -> b",350,351,2025-11-07 11:49:39.250220,2025-11-07 11:49:39.250220 ghc,unknown,Distribution.FieldGrammar.Class,FieldGrammar,libraries/Cabal/Cabal/src/Distribution/FieldGrammar/Class.hs:42:8-19,"class (c SpecVersion, c TestedWith, c SpecLicense, c Token, c Token', c FilePathNT) => FieldGrammar c g | g -> c where blurFieldGrammar :: ALens' a b -> g b d -> g a d uniqueFieldAla :: (c b, Newtype a b) => FieldName "" field name"" -> (a -> b) "" 'Newtype' pack"" -> ALens' s a "" lens into the field"" -> g s a booleanFieldDef :: FieldName "" field name"" -> ALens' s Bool "" lens into the field"" -> Bool "" default"" -> g s Bool optionalFieldAla :: (c b, Newtype a b) => FieldName "" field name"" -> (a -> b) "" 'pack'"" -> ALens' s (Maybe a) "" lens into the field"" -> g s (Maybe a) optionalFieldDefAla :: (c b, Newtype a b, Eq a) => FieldName "" field name"" -> (a -> b) "" 'Newtype' pack"" -> ALens' s a "" @'Lens'' s a@: lens into the field"" -> a "" default value"" -> g s a freeTextField :: FieldName -> ALens' s (Maybe String) "" lens into the field"" -> g s (Maybe String) freeTextFieldDef :: FieldName -> ALens' s String "" lens into the field"" -> g s String freeTextFieldDefST :: FieldName -> ALens' s ShortText "" lens into the field"" -> g s ShortText monoidalFieldAla :: (c b, Monoid a, Newtype a b) => FieldName "" field name"" -> (a -> b) "" 'pack'"" -> ALens' s a "" lens into the field"" -> g s a prefixedFields :: FieldName "" field name prefix"" -> ALens' s [(String, String)] "" lens into the field"" -> g s [(String, String)] knownField :: FieldName -> g s () hiddenField :: g s a -> g s a deprecatedSince :: CabalSpecVersion "" version"" -> String "" deprecation message"" -> g s a -> g s a removedIn :: CabalSpecVersion "" version"" -> String "" removal message"" -> g s a -> g s a availableSince :: CabalSpecVersion "" spec version"" -> a "" default value"" -> g s a -> g s a availableSinceWarn :: CabalSpecVersion "" spec version"" -> g s a -> g s a availableSinceWarn _ = id",39,160,2025-11-07 11:49:39.250006,2025-11-07 11:49:39.250006 ghc,unknown,Distribution.FieldGrammar.FieldDescrs,ParsecPretty,libraries/Cabal/Cabal/src/Distribution/FieldGrammar/FieldDescrs.hs:120:36-47,"class (P.Parsec a, Pretty a) => ParsecPretty a",120,120,2025-11-07 11:49:39.250044,2025-11-07 11:49:39.250044 ghc,unknown,Distribution.Utils.Path,IsDir,libraries/Cabal/Cabal/src/Distribution/Utils/Path.hs:90:7-11,class IsDir dir,90,90,2025-11-07 11:49:39.250050,2025-11-07 11:49:39.250050 ghc,unknown,Distribution.Utils.Structured,Structured,libraries/Cabal/Cabal/src/Distribution/Utils/Structured.hs:246:21-30,"class Typeable a => Structured a where structure :: Proxy a -> Structure default structure :: (Generic a, GStructured (Rep a)) => Proxy a -> Structure structure = genericStructure structureHash' :: Tagged a MD5 structureHash' = Tagged (hashStructure (structure (Proxy :: Proxy a)))",246,253,2025-11-07 11:49:39.250055,2025-11-07 11:49:39.250055 ghc,unknown,Distribution.Utils.Structured,GStructured,libraries/Cabal/Cabal/src/Distribution/Utils/Structured.hs:361:7-17,"class GStructured (f :: Type -> Type) where gstructured :: TypeRep -> Proxy f -> TypeVersion -> Structure",361,362,2025-11-07 11:49:39.250063,2025-11-07 11:49:39.250063 ghc,unknown,Distribution.Utils.Structured,GStructuredSum,libraries/Cabal/Cabal/src/Distribution/Utils/Structured.hs:375:7-20,"class GStructuredSum (f :: Type -> Type) where gstructuredSum :: Proxy f -> SopStructure -> SopStructure",375,376,2025-11-07 11:49:39.250069,2025-11-07 11:49:39.250069 ghc,unknown,Distribution.Utils.Structured,GStructuredProd,libraries/Cabal/Cabal/src/Distribution/Utils/Structured.hs:392:7-21,"class GStructuredProd (f :: Type -> Type) where gstructuredProd :: Proxy f -> [Structure] -> [Structure]",392,393,2025-11-07 11:49:39.250075,2025-11-07 11:49:39.250075 ghc,unknown,Distribution.Utils.IOData,KnownIODataMode,libraries/Cabal/Cabal/src/Distribution/Utils/IOData.hs:43:22-36,"class NFData mode => KnownIODataMode mode where hGetIODataContents :: System.IO.Handle -> Prelude.IO mode toIOData :: mode -> IOData iodataMode :: IODataMode mode",43,53,2025-11-07 11:49:39.250081,2025-11-07 11:49:39.250081 ghc,unknown,Distribution.Simple.Flag,BooleanFlag,libraries/Cabal/Cabal/src/Distribution/Simple/Flag.hs:128:7-17,"class BooleanFlag a where asBool :: a -> Bool",128,129,2025-11-07 11:49:39.250088,2025-11-07 11:49:39.250088 ghc,unknown,Distribution.Backpack.ModSubst,ModSubst,libraries/Cabal/Cabal/src/Distribution/Backpack/ModSubst.hs:23:7-14,"class ModSubst a where modSubst :: OpenModuleSubst -> a -> a",23,28,2025-11-07 11:49:39.250093,2025-11-07 11:49:39.250093 ghc,unknown,Text.Parsec.Prim,Stream,libraries/parsec/src/Text/Parsec/Prim.hs:465:20-25,"class (Monad m) => Stream s m t | s -> t where uncons :: s -> m (Maybe (t, s))",465,466,2025-11-07 11:49:39.250099,2025-11-07 11:49:39.250099 ghc,unknown,Transform,HasDecls,utils/check-exact/Transform.hs:1107:19-26,"class (Data t) => HasDecls t where hsDecls :: (Monad m) => t -> TransformT m [LHsDecl GhcPs] replaceDecls :: (Monad m) => t -> [LHsDecl GhcPs] -> TransformT m t",1107,1135,2025-11-07 11:49:39.250104,2025-11-07 11:49:39.250104 ghc,unknown,Transform,HasTransform,utils/check-exact/Transform.hs:1554:21-32,"class (Monad m) => HasTransform m where liftT :: Transform a -> m a",1554,1555,2025-11-07 11:49:39.250111,2025-11-07 11:49:39.250111 ghc,unknown,ExactPrint,HasEntry,utils/check-exact/ExactPrint.hs:156:7-14,"class HasEntry ast where fromAnn :: ast -> Entry",156,157,2025-11-07 11:49:39.250116,2025-11-07 11:49:39.250116 ghc,unknown,ExactPrint,ExactPrint,utils/check-exact/ExactPrint.hs:351:23-32,"class (Typeable a) => ExactPrint a where getAnnotationEntry :: a -> Entry exact :: a -> Annotated ()",351,353,2025-11-07 11:49:39.250121,2025-11-07 11:49:39.250121 ghc,unknown,ExactPrint,ExactPrintTVFlag,utils/check-exact/ExactPrint.hs:2866:24-39,"class Typeable flag => ExactPrintTVFlag flag where exactTVDelimiters :: EpAnn [AddEpAnn] -> flag -> Annotated () -> Annotated ()",2866,2867,2025-11-07 11:49:39.250126,2025-11-07 11:49:39.250126 ghc,unknown,HpcCombine,Strict,utils/hpc/HpcCombine.hs:169:7-12,"class Strict a where strict :: a -> a",169,170,2025-11-07 11:49:39.250132,2025-11-07 11:49:39.250132 ghc,unknown,Haddock.Types,SetName,utils/haddock/haddock-api/src/Haddock/Types.hs:337:26-32,"class NamedThing name => SetName name where setName :: Name -> name -> name",337,339,2025-11-07 11:49:39.250137,2025-11-07 11:49:39.250137 ghc,unknown,Haddock.GhcUtils,Parent,utils/haddock/haddock-api/src/Haddock/GhcUtils.hs:464:7-12,"class Parent a where children :: a -> [Name]",464,465,2025-11-07 11:49:39.250142,2025-11-07 11:49:39.250142 ghc,unknown,Haddock.Backends.LaTeX,RenderableBndrFlag,utils/haddock/haddock-api/src/Haddock/Backends/LaTeX.hs:1065:7-24,"class RenderableBndrFlag flag where ppHsTyVarBndr :: Bool -> HsTyVarBndr flag DocNameI -> LaTeX",1065,1066,2025-11-07 11:49:39.250147,2025-11-07 11:49:39.250147 ghc,unknown,Haddock.Backends.Xhtml.Decl,RenderableBndrFlag,utils/haddock/haddock-api/src/Haddock/Backends/Xhtml/Decl.hs:1151:7-24,"class RenderableBndrFlag flag where ppHsTyVarBndr :: Unicode -> Qualification -> HsTyVarBndr flag DocNameI -> Html",1151,1152,2025-11-07 11:49:39.250153,2025-11-07 11:49:39.250153 ghc,unknown,Haddock.Utils.Json,ToJSON,utils/haddock/haddock-api/src/Haddock/Utils/Json.hs:73:7-12,"class ToJSON a where toJSON :: a -> Value",73,75,2025-11-07 11:49:39.250160,2025-11-07 11:49:39.250160 ghc,unknown,Haddock.Utils.Json,FromJSON,utils/haddock/haddock-api/src/Haddock/Utils/Json.hs:352:7-14,"class FromJSON a where parseJSON :: Value -> Parser a parseJSONList :: Value -> Parser [a] parseJSONList = withArray ""[]"" (zipWithM (parseIndexedJSON parseJSON) [0 .. ])",352,356,2025-11-07 11:49:39.250164,2025-11-07 11:49:39.250164 ghc,unknown,GHCi.UI.Monad,GhciMonad,ghc/GHCi/UI/Monad.hs:284:21-29,"class GhcMonad m => GhciMonad m where getGHCiState :: m GHCiState setGHCiState :: GHCiState -> m () modifyGHCiState :: (GHCiState -> GHCiState) -> m () reifyGHCi :: ((Session, IORef GHCiState) -> IO a) -> m a",284,288,2025-11-07 11:49:39.250176,2025-11-07 11:49:39.250176 ghc,unknown,GHC,ParsedMod,compiler/GHC.hs:1013:7-15,"class ParsedMod m where modSummary :: m -> ModSummary parsedSource :: m -> ParsedSource",1013,1015,2025-11-07 11:49:39.250183,2025-11-07 11:49:39.250183 ghc,unknown,GHC,TypecheckedMod,compiler/GHC.hs:1017:22-35,"class ParsedMod m => TypecheckedMod m where renamedSource :: m -> Maybe RenamedSource typecheckedSource :: m -> TypecheckedSource moduleInfo :: m -> ModuleInfo tm_internals :: m -> (TcGblEnv, ModDetails)",1017,1021,2025-11-07 11:49:39.250188,2025-11-07 11:49:39.250188 ghc,unknown,GHC,DesugaredMod,compiler/GHC.hs:1028:27-38,"class TypecheckedMod m => DesugaredMod m where coreModule :: m -> ModGuts",1028,1029,2025-11-07 11:49:39.250194,2025-11-07 11:49:39.250194 ghc,unknown,Language.Haskell.Syntax.Extension,UnXRec,compiler/Language/Haskell/Syntax/Extension.hs:134:7-12,"class UnXRec p where unXRec :: XRec p a -> a",134,135,2025-11-07 11:49:39.250199,2025-11-07 11:49:39.250199 ghc,unknown,Language.Haskell.Syntax.Extension,MapXRec,compiler/Language/Haskell/Syntax/Extension.hs:139:7-13,"class MapXRec p where mapXRec :: (Anno a ~ Anno b) => (a -> b) -> XRec p a -> XRec p b",139,140,2025-11-07 11:49:39.250204,2025-11-07 11:49:39.250204 ghc,unknown,GHC.Cmm.Expr,DefinerOfRegs,compiler/GHC/Cmm/Expr.hs:357:16-28,"class Ord r => DefinerOfRegs r a where foldRegsDefd :: Platform -> (b -> r -> b) -> b -> a -> b",357,358,2025-11-07 11:49:39.250226,2025-11-07 11:49:39.250226 ghc,unknown,GHC.Cmm.Dataflow.Collections,IsSet,compiler/GHC/Cmm/Dataflow/Collections.hs:20:7-11,"class IsSet set where type ElemOf set setNull :: set -> Bool setSize :: set -> Int setMember :: ElemOf set -> set -> Bool setEmpty :: set setSingleton :: ElemOf set -> set setInsert :: ElemOf set -> set -> set setDelete :: ElemOf set -> set -> set setUnion :: set -> set -> set setDifference :: set -> set -> set setIntersection :: set -> set -> set setIsSubsetOf :: set -> set -> Bool setFilter :: (ElemOf set -> Bool) -> set -> set setFoldl :: (b -> ElemOf set -> b) -> b -> set -> b setFoldr :: (ElemOf set -> b -> b) -> b -> set -> b setElems :: set -> [ElemOf set] setFromList :: [ElemOf set] -> set",20,42,2025-11-07 11:49:39.250243,2025-11-07 11:49:39.250243 ghc,unknown,GHC.Cmm.Dataflow.Collections,IsMap,compiler/GHC/Cmm/Dataflow/Collections.hs:56:7-11,"class IsMap map where type KeyOf map mapNull :: map a -> Bool mapSize :: map a -> Int mapMember :: KeyOf map -> map a -> Bool mapLookup :: KeyOf map -> map a -> Maybe a mapFindWithDefault :: a -> KeyOf map -> map a -> a mapEmpty :: map a mapSingleton :: KeyOf map -> a -> map a mapInsert :: KeyOf map -> a -> map a -> map a mapInsertWith :: (a -> a -> a) -> KeyOf map -> a -> map a -> map a mapDelete :: KeyOf map -> map a -> map a mapAlter :: (Maybe a -> Maybe a) -> KeyOf map -> map a -> map a mapAdjust :: (a -> a) -> KeyOf map -> map a -> map a mapUnion :: map a -> map a -> map a mapUnionWithKey :: (KeyOf map -> a -> a -> a) -> map a -> map a -> map a mapDifference :: map a -> map a -> map a mapIntersection :: map a -> map a -> map a mapIsSubmapOf :: Eq a => map a -> map a -> Bool mapMap :: (a -> b) -> map a -> map b mapMapWithKey :: (KeyOf map -> a -> b) -> map a -> map b mapFoldl :: (b -> a -> b) -> b -> map a -> b mapFoldr :: (a -> b -> b) -> b -> map a -> b mapFoldlWithKey :: (b -> KeyOf map -> a -> b) -> b -> map a -> b mapFoldMapWithKey :: Monoid m => (KeyOf map -> a -> m) -> map a -> m mapFilter :: (a -> Bool) -> map a -> map a mapFilterWithKey :: (KeyOf map -> a -> Bool) -> map a -> map a mapElems :: map a -> [a] mapKeys :: map a -> [KeyOf map] mapToList :: map a -> [(KeyOf map, a)] mapFromList :: [(KeyOf map, a)] -> map a mapFromListWith :: (a -> a -> a) -> [(KeyOf map, a)] -> map a",56,93,2025-11-07 11:49:39.250255,2025-11-07 11:49:39.250255 ghc,unknown,GHC.Cmm.Dataflow.Graph,NonLocal,compiler/GHC/Cmm/Dataflow/Graph.hs:41:7-14,"class NonLocal thing where entryLabel :: thing C x -> Label "" The label of a first node or block"" successors :: thing e C -> [Label] "" Gives control-flow successors""",41,43,2025-11-07 11:49:39.250276,2025-11-07 11:49:39.250276 ghc,unknown,GHC.Unit.Types,IsUnitId,compiler/GHC/Unit/Types.hs:173:7-14,"class IsUnitId u where unitFS :: u -> FastString",173,174,2025-11-07 11:49:39.250282,2025-11-07 11:49:39.250282 ghc,unknown,GHC.Unit.Module,ContainsModule,compiler/GHC/Unit/Module.hs:75:7-20,"class ContainsModule t where extractModule :: t -> Module",75,76,2025-11-07 11:49:39.250287,2025-11-07 11:49:39.250287 ghc,unknown,GHC.Unit.Module,HasModule,compiler/GHC/Unit/Module.hs:78:7-15,"class HasModule m where getModule :: m Module",78,79,2025-11-07 11:49:39.250292,2025-11-07 11:49:39.250292 ghc,unknown,GHC.Types.Name.hs-boot.class_code.json,NamedThing,compiler/GHC/Types/Name.hs-boot:19:7-16,"class NamedThing a where getOccName :: a -> OccName getName :: a -> Name getOccName n = nameOccName (getName n)",19,23,2025-11-07 11:49:39.250297,2025-11-07 11:49:39.250297 ghc,unknown,GHC.Types.Error,RenderableDiagnostic,compiler/GHC/Types/Error.hs:146:7-26,"class RenderableDiagnostic a where renderDiagnostic :: a -> DecoratedSDoc",146,147,2025-11-07 11:49:39.250303,2025-11-07 11:49:39.250303 ghc,unknown,GHC.Types.Unique,Uniquable,compiler/GHC/Types/Unique.hs:179:7-15,"class Uniquable a where getUnique :: a -> Unique",179,180,2025-11-07 11:49:39.250308,2025-11-07 11:49:39.250308 ghc,unknown,GHC.Types.TyThing,MonadThings,compiler/GHC/Types/TyThing.hs:299:18-28,"class Monad m => MonadThings m where lookupThing :: Name -> m TyThing lookupId :: Name -> m Id lookupId = liftM tyThingId . lookupThing lookupDataCon :: Name -> m DataCon lookupDataCon = liftM tyThingDataCon . lookupThing lookupTyCon :: Name -> m TyCon lookupTyCon = liftM tyThingTyCon . lookupThing",299,309,2025-11-07 11:49:39.250313,2025-11-07 11:49:39.250313 ghc,unknown,GHC.Types.Name,NamedThing,compiler/GHC/Types/Name.hs:745:7-16,"class NamedThing a where getOccName :: a -> OccName getName :: a -> Name getOccName n = nameOccName (getName n)",745,749,2025-11-07 11:49:39.250321,2025-11-07 11:49:39.250321 ghc,unknown,GHC.Types.Unique.Supply,MonadUnique,compiler/GHC/Types/Unique/Supply.hs:362:18-28,"class Monad m => MonadUnique m where getUniqueSupplyM :: m UniqSupply getUniqueM :: m Unique getUniquesM :: m [Unique] getUniqueM = liftM uniqFromSupply getUniqueSupplyM getUniquesM = liftM uniqsFromSupply getUniqueSupplyM",362,375,2025-11-07 11:49:39.250327,2025-11-07 11:49:39.250327 ghc,unknown,GHC.Types.Name.Occurrence.hs-boot.class_code.json,HasOccName,compiler/GHC/Types/Name/Occurrence.hs-boot:8:7-16,"class HasOccName name where occName :: name -> OccName",8,9,2025-11-07 11:49:39.250334,2025-11-07 11:49:39.250334 ghc,unknown,GHC.Types.Name.Occurrence,HasOccName,compiler/GHC/Types/Name/Occurrence.hs:376:7-16,"class HasOccName name where occName :: name -> OccName",376,377,2025-11-07 11:49:39.250340,2025-11-07 11:49:39.250340 ghc,unknown,GHC.Driver.Hooks.hs-boot.class_code.json,HasHooks,compiler/GHC/Driver/Hooks.hs-boot:9:7-14,"class HasHooks m where getHooks :: m Hooks",9,10,2025-11-07 11:49:39.250345,2025-11-07 11:49:39.250345 ghc,unknown,GHC.Driver.Hooks.hs-boot.class_code.json,ContainsHooks,compiler/GHC/Driver/Hooks.hs-boot:12:7-19,"class ContainsHooks a where extractHooks :: a -> Hooks",12,13,2025-11-07 11:49:39.250349,2025-11-07 11:49:39.250349 ghc,unknown,GHC.Driver.Hooks,HasHooks,compiler/GHC/Driver/Hooks.hs:154:7-14,"class HasHooks m where getHooks :: m Hooks",154,155,2025-11-07 11:49:39.250355,2025-11-07 11:49:39.250355 ghc,unknown,GHC.Driver.Hooks,ContainsHooks,compiler/GHC/Driver/Hooks.hs:157:7-19,"class ContainsHooks a where extractHooks :: a -> Hooks",157,158,2025-11-07 11:49:39.250359,2025-11-07 11:49:39.250359 ghc,unknown,GHC.Driver.Session,HasDynFlags,compiler/GHC/Driver/Session.hs:728:7-17,"class HasDynFlags m where getDynFlags :: m DynFlags",728,729,2025-11-07 11:49:39.250365,2025-11-07 11:49:39.250365 ghc,unknown,GHC.Driver.Session,ContainsDynFlags,compiler/GHC/Driver/Session.hs:752:7-22,"class ContainsDynFlags t where extractDynFlags :: t -> DynFlags",752,753,2025-11-07 11:49:39.250370,2025-11-07 11:49:39.250370 ghc,unknown,GHC.Driver.Monad,GhcMonad,compiler/GHC/Driver/Monad.hs:70:69-76,"class (Functor m, ExceptionMonad m, HasDynFlags m, HasLogger m) => GhcMonad m where getSession :: m HscEnv setSession :: HscEnv -> m ()",70,72,2025-11-07 11:49:39.250374,2025-11-07 11:49:39.250374 ghc,unknown,GHC.Utils.Json,ToJson,compiler/GHC/Utils/Json.hs:55:7-12,"class ToJson a where json :: a -> JsonDoc",55,56,2025-11-07 11:49:39.250381,2025-11-07 11:49:39.250381 ghc,unknown,GHC.Utils.Binary,Binary,compiler/GHC/Utils/Binary.hs:193:7-12,"class Binary a where put_ :: BinHandle -> a -> IO () put :: BinHandle -> a -> IO (Bin a) get :: BinHandle -> IO a put_ bh a = do _ <- put bh a return () put bh a = do p <- tellBin bh put_ bh a return p",193,202,2025-11-07 11:49:39.250386,2025-11-07 11:49:39.250386 ghc,unknown,GHC.Utils.Logger,HasLogger,compiler/GHC/Utils/Logger.hs:468:7-15,"class HasLogger m where getLogger :: m Logger",468,469,2025-11-07 11:49:39.250393,2025-11-07 11:49:39.250393 syb,unknown,GetC,TypeUnify',tests/GetC.hs:128:10-19,"class TypeUnify' x a b | x a -> b, x b -> a",128,128,2025-11-07 11:55:36.962015,2025-11-07 11:55:36.962015 ghc,unknown,GHC.Utils.Outputable,OutputableP,compiler/GHC/Utils/Outputable.hs:1069:7-17,"class OutputableP env a where pdoc :: env -> a -> SDoc",1069,1070,2025-11-07 11:49:39.250418,2025-11-07 11:49:39.250418 ghc,unknown,GHC.Utils.Outputable,OutputableBndr,compiler/GHC/Utils/Outputable.hs:1125:23-36,"class Outputable a => OutputableBndr a where pprBndr :: BindingSite -> a -> SDoc pprBndr _b x = ppr x pprPrefixOcc, pprInfixOcc :: a -> SDoc bndrIsJoin_maybe :: a -> Maybe Int bndrIsJoin_maybe _ = Nothing",1125,1135,2025-11-07 11:49:39.250424,2025-11-07 11:49:39.250424 ghc,unknown,GHC.Tc.Gen.Splice,ReifyFlag,compiler/GHC/Tc/Gen/Splice.hs:2357:7-15,"class ReifyFlag flag flag' | flag -> flag' where reifyFlag :: flag -> flag'",2357,2358,2025-11-07 11:49:39.250431,2025-11-07 11:49:39.250431 ghc,unknown,GHC.Parser.Lexer,MonadP,_build/source-dist/ghc-9.2.8-src/ghc-9.2.8/compiler/GHC/Parser/Lexer.x:2868:18-23,"class Monad m => MonadP m where addError :: PsError -> m () addWarning :: WarningFlag -> PsWarning -> m () addFatalError :: PsError -> m a getBit :: ExtBits -> m Bool allocateCommentsP :: RealSrcSpan -> m EpAnnComments allocatePriorCommentsP :: RealSrcSpan -> m EpAnnComments allocateFinalCommentsP :: RealSrcSpan -> m EpAnnComments",2868,2901,2025-11-07 11:49:39.250437,2025-11-07 11:49:39.250437 ghc,unknown,GHC.Parser.PostProcess,DisambInfixOp,compiler/GHC/Parser/PostProcess.hs:1393:7-19,"class DisambInfixOp b where mkHsVarOpPV :: LocatedN RdrName -> PV (LocatedN b) mkHsConOpPV :: LocatedN RdrName -> PV (LocatedN b) mkHsInfixHolePV :: SrcSpan -> (EpAnnComments -> EpAnn EpAnnUnboundVar) -> PV (Located b)",1393,1396,2025-11-07 11:49:39.250445,2025-11-07 11:49:39.250445 ghc,unknown,GHC.Parser.PostProcess,DisambECP,compiler/GHC/Parser/PostProcess.hs:1422:43-51,"class (b ~ (Body b) GhcPs, AnnoBody b) => DisambECP b where type Body b :: Type -> Type type InfixOp b type FunArg b ecpFromCmd' :: LHsCmd GhcPs -> PV (LocatedA b) ecpFromExp' :: LHsExpr GhcPs -> PV (LocatedA b) mkHsProjUpdatePV :: SrcSpan -> Located [Located (HsFieldLabel GhcPs)] -> LocatedA b -> Bool -> [AddEpAnn] -> PV (LHsRecProj GhcPs (LocatedA b)) mkHsLamPV :: SrcSpan -> (EpAnnComments -> MatchGroup GhcPs (LocatedA b)) -> PV (LocatedA b) mkHsLetPV :: SrcSpan -> HsLocalBinds GhcPs -> LocatedA b -> AnnsLet -> PV (LocatedA b) superInfixOp :: (DisambInfixOp (InfixOp b) => PV (LocatedA b)) -> PV (LocatedA b) mkHsOpAppPV :: SrcSpan -> LocatedA b -> LocatedN (InfixOp b) -> LocatedA b -> PV (LocatedA b) mkHsCasePV :: SrcSpan -> LHsExpr GhcPs -> (LocatedL [LMatch GhcPs (LocatedA b)]) -> EpAnnHsCase -> PV (LocatedA b) mkHsLamCasePV :: SrcSpan -> (LocatedL [LMatch GhcPs (LocatedA b)]) -> [AddEpAnn] -> PV (LocatedA b) superFunArg :: (DisambECP (FunArg b) => PV (LocatedA b)) -> PV (LocatedA b) mkHsAppPV :: SrcSpanAnnA -> LocatedA b -> LocatedA (FunArg b) -> PV (LocatedA b) mkHsAppTypePV :: SrcSpanAnnA -> LocatedA b -> SrcSpan -> LHsType GhcPs -> PV (LocatedA b) mkHsIfPV :: SrcSpan -> LHsExpr GhcPs -> Bool -> LocatedA b -> Bool -> LocatedA b -> AnnsIf -> PV (LocatedA b) mkHsDoPV :: SrcSpan -> Maybe ModuleName -> LocatedL [LStmt GhcPs (LocatedA b)] -> AnnList -> PV (LocatedA b) mkHsParPV :: SrcSpan -> LocatedA b -> AnnParen -> PV (LocatedA b) mkHsVarPV :: LocatedN RdrName -> PV (LocatedA b) mkHsLitPV :: Located (HsLit GhcPs) -> PV (Located b) mkHsOverLitPV :: Located (HsOverLit GhcPs) -> PV (Located b) mkHsWildCardPV :: SrcSpan -> PV (Located b) mkHsTySigPV :: SrcSpanAnnA -> LocatedA b -> LHsType GhcPs -> [AddEpAnn] -> PV (LocatedA b) mkHsExplicitListPV :: SrcSpan -> [LocatedA b] -> AnnList -> PV (LocatedA b) mkHsSplicePV :: Located (HsSplice GhcPs) -> PV (Located b) mkHsRecordPV :: Bool -> SrcSpan -> SrcSpan -> LocatedA b -> ([Fbind b], Maybe SrcSpan) -> [AddEpAnn] -> PV (LocatedA b) mkHsNegAppPV :: SrcSpan -> LocatedA b -> [AddEpAnn] -> PV (LocatedA b) mkHsSectionR_PV :: SrcSpan -> LocatedA (InfixOp b) -> LocatedA b -> PV (Located b) mkHsViewPatPV :: SrcSpan -> LHsExpr GhcPs -> LocatedA b -> [AddEpAnn] -> PV (LocatedA b) mkHsAsPatPV :: SrcSpan -> LocatedN RdrName -> LocatedA b -> [AddEpAnn] -> PV (LocatedA b) mkHsLazyPatPV :: SrcSpan -> LocatedA b -> [AddEpAnn] -> PV (LocatedA b) mkHsBangPatPV :: SrcSpan -> LocatedA b -> [AddEpAnn] -> PV (LocatedA b) mkSumOrTuplePV :: SrcSpanAnnA -> Boxity -> SumOrTuple b -> [AddEpAnn] -> PV (LocatedA b) rejectPragmaPV :: LocatedA b -> PV ()",1422,1522,2025-11-07 11:49:39.250452,2025-11-07 11:49:39.250452 ghc,unknown,GHC.Parser.PostProcess,DisambTD,compiler/GHC/Parser/PostProcess.hs:1850:7-14,"class DisambTD b where mkHsAppTyHeadPV :: LHsType GhcPs -> PV (LocatedA b) mkHsAppTyPV :: LocatedA b -> LHsType GhcPs -> PV (LocatedA b) mkHsAppKindTyPV :: LocatedA b -> SrcSpan -> LHsType GhcPs -> PV (LocatedA b) mkHsOpTyPV :: LHsType GhcPs -> LocatedN RdrName -> LHsType GhcPs -> PV (LocatedA b) mkUnpackednessPV :: Located UnpackednessPragma -> LocatedA b -> PV (LocatedA b)",1850,1861,2025-11-07 11:49:39.250493,2025-11-07 11:49:39.250493 ghc,unknown,GHC.Parser.PostProcess.Haddock,HasHaddock,compiler/GHC/Parser/PostProcess/Haddock.hs:226:7-16,"class HasHaddock a where addHaddock :: a -> HdkA a",226,227,2025-11-07 11:49:39.250501,2025-11-07 11:49:39.250501 ghc,unknown,GHC.Iface.Ext.Ast,ModifyState,compiler/GHC/Iface/Ext/Ast.hs:266:7-17,"class ModifyState a where addSubstitution :: a -> a -> HieState -> HieState",266,267,2025-11-07 11:49:39.250507,2025-11-07 11:49:39.250507 ghc,unknown,GHC.Iface.Ext.Ast,HasLoc,compiler/GHC/Iface/Ext/Ast.hs:541:7-12,"class HasLoc a where loc :: a -> SrcSpan",541,543,2025-11-07 11:49:39.250512,2025-11-07 11:49:39.250512 ghc,unknown,GHC.Iface.Ext.Ast,ToHie,compiler/GHC/Iface/Ext/Ast.hs:581:7-11,"class ToHie a where toHie :: a -> HieM [HieAST Type]",581,582,2025-11-07 11:49:39.250516,2025-11-07 11:49:39.250516 ghc,unknown,GHC.Iface.Ext.Ast,HasType,compiler/GHC/Iface/Ext/Ast.hs:585:7-13,"class HasType a where getTypeNode :: a -> HieM [HieAST Type]",585,586,2025-11-07 11:49:39.250521,2025-11-07 11:49:39.250521 ghc,unknown,GHC.Iface.Ext.Ast,HiePass,compiler/GHC/Iface/Ext/Ast.hs:814:10-16,"class (IsPass p, HiePass (NoGhcTcPass p), ModifyState (IdGhcP p), Data (GRHS (GhcPass p) (LocatedA (HsExpr (GhcPass p)))), Data (Match (GhcPass p) (LocatedA (HsExpr (GhcPass p)))), Data (Match (GhcPass p) (LocatedA (HsCmd (GhcPass p)))), Data (Stmt (GhcPass p) (LocatedA (HsExpr (GhcPass p)))), Data (Stmt (GhcPass p) (LocatedA (HsCmd (GhcPass p)))), Data (HsExpr (GhcPass p)), Data (HsCmd (GhcPass p)), Data (AmbiguousFieldOcc (GhcPass p)), Data (HsCmdTop (GhcPass p)), Data (GRHS (GhcPass p) (LocatedA (HsCmd (GhcPass p)))), Data (HsSplice (GhcPass p)), Data (HsLocalBinds (GhcPass p)), Data (FieldOcc (GhcPass p)), Data (HsTupArg (GhcPass p)), Data (IPBind (GhcPass p)), ToHie (Context (Located (IdGhcP p))), ToHie (RFContext (Located (AmbiguousFieldOcc (GhcPass p)))), ToHie (RFContext (Located (FieldOcc (GhcPass p)))), ToHie (TScoped (LHsWcType (GhcPass (NoGhcTcPass p)))), ToHie (TScoped (LHsSigWcType (GhcPass (NoGhcTcPass p)))), Anno (IdGhcP p) ~ SrcSpanAnnN) => HiePass p where hiePass :: HiePassEv p",789,815,2025-11-07 11:49:39.250526,2025-11-07 11:49:39.250526 ghc,unknown,GHC.CmmToAsm.PIC,CmmMakeDynamicReferenceM,compiler/GHC/CmmToAsm/PIC.hs:96:18-41,"class Monad m => CmmMakeDynamicReferenceM m where addImport :: CLabel -> m ()",96,97,2025-11-07 11:49:39.250542,2025-11-07 11:49:39.250542 ghc,unknown,GHC.CmmToAsm.Instr,Instruction,compiler/GHC/CmmToAsm/Instr.hs:44:7-17,"class Instruction instr where regUsageOfInstr :: Platform -> instr -> RegUsage patchRegsOfInstr :: instr -> (Reg -> Reg) -> instr isJumpishInstr :: instr -> Bool jumpDestsOfInstr :: instr -> [BlockId] patchJumpInstr :: instr -> (BlockId -> BlockId) -> instr mkSpillInstr :: NCGConfig -> Reg "" the reg to spill"" -> Int "" the current stack delta"" -> Int "" spill slot to use"" -> [instr] "" instructions"" mkLoadInstr :: NCGConfig -> Reg "" the reg to reload."" -> Int "" the current stack delta"" -> Int "" the spill slot to use"" -> [instr] "" instructions"" takeDeltaInstr :: instr -> Maybe Int isMetaInstr :: instr -> Bool mkRegRegMoveInstr :: Platform -> Reg "" source register"" -> Reg "" destination register"" -> instr takeRegRegMoveInstr :: instr -> Maybe (Reg, Reg) mkJumpInstr :: BlockId -> [instr] mkStackAllocInstr :: Platform -> Int -> [instr] mkStackDeallocInstr :: Platform -> Int -> [instr] pprInstr :: Platform -> instr -> SDoc mkComment :: SDoc -> [instr]",44,163,2025-11-07 11:49:39.250548,2025-11-07 11:49:39.250548 ghc,unknown,GHC.CmmToAsm.Reg.Linear.FreeRegs,FR,compiler/GHC/CmmToAsm/Reg/Linear/FreeRegs.hs:44:24-25,"class Show freeRegs => FR freeRegs where frAllocateReg :: Platform -> RealReg -> freeRegs -> freeRegs frGetFreeRegs :: Platform -> RegClass -> freeRegs -> [RealReg] frInitFreeRegs :: Platform -> freeRegs frReleaseReg :: Platform -> RealReg -> freeRegs -> freeRegs",44,48,2025-11-07 11:49:39.250585,2025-11-07 11:49:39.250585 ghc,unknown,GHC.Hs.Extension,IsPass,compiler/GHC/Hs/Extension.hs:180:12-17,"class (NoGhcTcPass (NoGhcTcPass p) ~ NoGhcTcPass p, IsPass (NoGhcTcPass p)) => IsPass p where ghcPass :: GhcPass p",178,181,2025-11-07 11:49:39.250594,2025-11-07 11:49:39.250594 ghc,unknown,GHC.Hs.Utils,CollectPass,compiler/GHC/Hs/Utils.hs:1246:19-29,"class UnXRec p => CollectPass p where collectXXPat :: Proxy p -> CollectFlag p -> XXPat p -> [IdP p] -> [IdP p]",1246,1247,2025-11-07 11:49:39.250600,2025-11-07 11:49:39.250600 ghc,unknown,GHC.Hs.Type,OutputableBndrFlag,compiler/GHC/Hs/Type.hs:854:7-24,"class OutputableBndrFlag flag p where pprTyVarBndr :: OutputableBndrId p => HsTyVarBndr flag (GhcPass p) -> SDoc",854,856,2025-11-07 11:49:39.250609,2025-11-07 11:49:39.250609 ghc,unknown,GHC.HsToCore.Quote,RepTV,compiler/GHC/HsToCore/Quote.hs:1150:7-11,"class RepTV flag flag' | flag -> flag' where tyVarBndrName :: Name repPlainTV :: Core TH.Name -> flag -> MetaM (Core (M (TH.TyVarBndr flag'))) repKindedTV :: Core TH.Name -> flag -> Core (M TH.Kind) -> MetaM (Core (M (TH.TyVarBndr flag')))",1150,1154,2025-11-07 11:49:39.250614,2025-11-07 11:49:39.250614 ghc,unknown,GHC.Data.TrieMap,TrieMap,compiler/GHC/Data/TrieMap.hs:69:7-13,"class TrieMap m where type Key m :: Type emptyTM :: m a lookupTM :: forall b. Key m -> m b -> Maybe b alterTM :: forall b. Key m -> XT b -> m b -> m b mapTM :: (a -> b) -> m a -> m b filterTM :: (a -> Bool) -> m a -> m a foldTM :: (a -> b -> b) -> m a -> b -> b",69,77,2025-11-07 11:49:39.250621,2025-11-07 11:49:39.250621 ghc-exactprint,unknown,Language.Haskell.GHC.ExactPrint.Transform,HasDecls,src/Language/Haskell/GHC/ExactPrint/Transform.hs:972:19-26,"class (Data t) => HasDecls t where hsDecls :: (Monad m) => t -> TransformT m [LHsDecl GhcPs] replaceDecls :: (Monad m) => t -> [LHsDecl GhcPs] -> TransformT m t",972,1000,2025-11-07 11:49:51.883918,2025-11-07 11:49:51.883918 ghc-exactprint,unknown,Language.Haskell.GHC.ExactPrint.Transform,HasTransform,src/Language/Haskell/GHC/ExactPrint/Transform.hs:1309:21-32,"class (Monad m) => HasTransform m where liftT :: Transform a -> m a",1309,1310,2025-11-07 11:49:51.883934,2025-11-07 11:49:51.883934 ghc-exactprint,unknown,Language.Haskell.GHC.ExactPrint.ExactPrint,HasEntry,src/Language/Haskell/GHC/ExactPrint/ExactPrint.hs:203:7-14,"class HasEntry ast where fromAnn :: ast -> Entry",203,204,2025-11-07 11:49:51.883942,2025-11-07 11:49:51.883942 ghc-exactprint,unknown,Language.Haskell.GHC.ExactPrint.ExactPrint,ExactPrint,src/Language/Haskell/GHC/ExactPrint/ExactPrint.hs:481:23-32,"class (Typeable a) => ExactPrint a where getAnnotationEntry :: a -> Entry setAnnotationAnchor :: a -> Anchor -> EpAnnComments -> a exact :: (Monad m, Monoid w) => a -> EP w m a",481,484,2025-11-07 11:49:51.883949,2025-11-07 11:49:51.883949 ghc-exactprint,unknown,Language.Haskell.GHC.ExactPrint.ExactPrint,ExactPrintTVFlag,src/Language/Haskell/GHC/ExactPrint/ExactPrint.hs:3789:24-39,"class Typeable flag => ExactPrintTVFlag flag where exactTVDelimiters :: (Monad m, Monoid w) => EpAnn [AddEpAnn] -> flag -> EP w m (HsTyVarBndr flag GhcPs) -> EP w m (EpAnn [AddEpAnn], (HsTyVarBndr flag GhcPs))",3789,3792,2025-11-07 11:49:51.883956,2025-11-07 11:49:51.883956 ghc-hasfield-plugin,unknown,Data.Record.Plugin.Shim,HasDefaultExt,src/Data/Record/Plugin/Shim.hs:180:7-19,"class HasDefaultExt a where defExt :: a",180,181,2025-11-07 11:49:53.149822,2025-11-07 11:49:53.149822 ghc-tcplugin-api,unknown,GHC.TcPlugin.API.Internal,MonadTcPlugin,src/GHC/TcPlugin/API/Internal.hs:303:78-90,"class (Monad m, (forall x y. Coercible x y => Coercible (m x) (m y))) => MonadTcPlugin (m :: Type -> Type) where {-# MINIMAL liftTcPluginM, unsafeWithRunInTcM #-} liftTcPluginM :: GHC.TcPluginM a -> m a unsafeLiftTcM :: GHC.TcM a -> m a unsafeLiftTcM = liftTcPluginM . GHC.unsafeTcPluginTcM unsafeWithRunInTcM :: ((forall a. m a -> GHC.TcM a) -> GHC.TcM b) -> m b",303,322,2025-11-07 11:49:55.583037,2025-11-07 11:49:55.583037 ghc-tcplugin-api,unknown,GHC.TcPlugin.API.Internal,MonadTcPluginWork,src/GHC/TcPlugin/API/Internal.hs:477:26-42,"class MonadTcPlugin m => MonadTcPluginWork m where {-# MINIMAL #-} askBuiltins :: m BuiltinDefs askBuiltins = error ""askBuiltins: no default implementation""",477,480,2025-11-07 11:49:55.583055,2025-11-07 11:49:55.583055 ghc-tcplugin-api,unknown,GHC.TcPlugin.API.Names,Lookupable,src/GHC/TcPlugin/API/Names.hs:246:7-16,"class Lookupable (a :: k) where mkOccName :: String -> OccName lookup :: MonadTcPlugin m => Name -> m (Wear Resolved a)",246,248,2025-11-07 11:49:55.583064,2025-11-07 11:49:55.583064 ghc-tcplugin-api,unknown,GHC.TcPlugin.API.Names,ResolveNames,src/GHC/TcPlugin/API/Names.hs:298:7-18,"class ResolveNames (f :: NameResolution -> Type) where resolve_names :: (Coercible res (f Resolved), MonadTcPlugin m) => f Named -> m res",298,300,2025-11-07 11:49:55.583070,2025-11-07 11:49:55.583070 ghc-tcplugin-api,unknown,GHC.TcPlugin.API.Names,ResolveName,src/GHC/TcPlugin/API/Names.hs:348:10-20,"class (a ~ Wear Named (UnwearNamed a), b ~ Wear Resolved (UnwearNamed a), Lookupable (UnwearNamed a)) => ResolveName (a :: Type) (b :: Type)",344,348,2025-11-07 11:49:55.583076,2025-11-07 11:49:55.583076 ghc-tcplugin-api,unknown,GHC.TcPlugin.API.Names,GTraversableC,src/GHC/TcPlugin/API/Names.hs:436:7-19,"class GTraversableC (c :: Type -> Type -> Constraint) (s :: Type -> Type) (t :: Type -> Type) where gtraverseC :: TraversalC c (s x) (t x)",436,437,2025-11-07 11:49:55.583082,2025-11-07 11:49:55.583082 groups,unknown,Data.Group,Group,src/Data/Group.hs:28:19-23,"class Monoid m => Group m where invert :: m -> m (~~) :: m -> m -> m x ~~ y = x `mappend` invert y pow :: Integral x => m -> x -> m pow x0 n0 = case compare n0 0 of LT -> invert . f x0 $ negate n0 EQ -> mempty GT -> f x0 n0 where f x n | even n = f (x `mappend` x) (n `quot` 2) | n == 1 = x | otherwise = g (x `mappend` x) (n `quot` 2) x g x n c | even n = g (x `mappend` x) (n `quot` 2) c | n == 1 = x `mappend` c | otherwise = g (x `mappend` x) (n `quot` 2) (x `mappend` c)",28,53,2025-11-07 11:49:57.945939,2025-11-07 11:49:57.945939 groups,unknown,Data.Group,Abelian,src/Data/Group.hs:104:18-24,class Group g => Abelian g,104,104,2025-11-07 11:49:57.945953,2025-11-07 11:49:57.945953 groups,unknown,Data.Group,Cyclic,src/Data/Group.hs:131:18-23,"class Group a => Cyclic a where generator :: a",131,133,2025-11-07 11:49:57.945959,2025-11-07 11:49:57.945959 hasbolt,unknown,Database.Bolt.Record,RecordValue,src/Database/Bolt/Record.hs:21:7-17,"class RecordValue a where exactEither :: Value -> Either UnpackError a",21,22,2025-11-07 11:49:59.187784,2025-11-07 11:49:59.187784 hasbolt,unknown,Database.Bolt.Value.Type,FromStructure,src/Database/Bolt/Value/Type.hs:67:7-19,"class FromStructure a where fromStructure :: MonadError UnpackError m => Structure -> m a",67,68,2025-11-07 11:49:59.187791,2025-11-07 11:49:59.187791 hasbolt,unknown,Database.Bolt.Value.Type,ToStructure,src/Database/Bolt/Value/Type.hs:71:7-17,"class ToStructure a where toStructure :: a -> Structure",71,72,2025-11-07 11:49:59.187797,2025-11-07 11:49:59.187797 hasbolt,unknown,Database.Bolt.Value.Type,BoltValue,src/Database/Bolt/Value/Type.hs:75:7-15,"class BoltValue a where pack :: a -> Put unpackT :: Get a",75,79,2025-11-07 11:49:59.187802,2025-11-07 11:49:59.187802 hasbolt,unknown,Database.Bolt.Value.Type,IsValue,src/Database/Bolt/Value/Type.hs:111:7-13,"class IsValue a where toValue :: HasCallStack => a -> Value toValueList :: HasCallStack => [a] -> Value toValueList = L . fmap toValue",111,116,2025-11-07 11:49:59.187808,2025-11-07 11:49:59.187808 hashable,unknown,Data.Hashable.Class,Hashable,src/Data/Hashable/Class.hs:199:15-22,"class Eq a => Hashable a where hashWithSalt :: Int -> a -> Int hash :: a -> Int hash = defaultHash default hashWithSalt :: (Generic a, GHashable Zero (Rep a)) => Int -> a -> Int hashWithSalt = genericHashWithSalt {-# INLINE hashWithSalt #-}",199,236,2025-11-07 11:50:00.481328,2025-11-07 11:50:00.481328 hashable,unknown,Data.Hashable.Class,GHashable,src/Data/Hashable/Class.hs:253:7-15,"class GHashable arity f where ghashWithSalt :: HashArgs arity a -> Int -> f a -> Int",253,254,2025-11-07 11:50:00.481344,2025-11-07 11:50:00.481344 hashable,unknown,Data.Hashable.Class,Hashable1,src/Data/Hashable/Class.hs:256:16-24,"class Eq1 t => Hashable1 t where liftHashWithSalt :: (Int -> a -> Int) -> Int -> t a -> Int default liftHashWithSalt :: (Generic1 t, GHashable One (Rep1 t)) => (Int -> a -> Int) -> Int -> t a -> Int liftHashWithSalt = genericLiftHashWithSalt {-# INLINE liftHashWithSalt #-}",256,262,2025-11-07 11:50:00.481369,2025-11-07 11:50:00.481369 hashable,unknown,Data.Hashable.Class,Hashable2,src/Data/Hashable/Class.hs:271:16-24,"class Eq2 t => Hashable2 t where liftHashWithSalt2 :: (Int -> a -> Int) -> (Int -> b -> Int) -> Int -> t a b -> Int",271,273,2025-11-07 11:50:00.481377,2025-11-07 11:50:00.481377 hashable,unknown,Data.Hashable.Generic.Instances,GSum,src/Data/Hashable/Generic/Instances.hs:54:20-23,"class SumSize f => GSum arity f where hashSum :: HashArgs arity a -> Int -> Int -> f a -> Int",54,55,2025-11-07 11:50:00.481384,2025-11-07 11:50:00.481384 hashable,unknown,Data.Hashable.Generic.Instances,SumSize,src/Data/Hashable/Generic/Instances.hs:114:7-13,"class SumSize f where sumSize :: Tagged f",114,115,2025-11-07 11:50:00.481390,2025-11-07 11:50:00.481390 haskell-src-exts,unknown,Language.Haskell.Exts.Pretty,Pretty,src/Language/Haskell/Exts/Pretty.hs:153:7-12,"class Pretty a where pretty :: a -> Doc prettyPrec :: Int -> a -> Doc pretty = prettyPrec 0 prettyPrec _ = pretty",153,159,2025-11-07 11:50:04.975608,2025-11-07 11:50:04.975608 haskell-src-exts,unknown,Language.Haskell.Exts.Pretty,PrettyDeclLike,src/Language/Haskell/Exts/Pretty.hs:381:19-32,"class Pretty a => PrettyDeclLike a where wantsBlankline :: a -> Bool",381,382,2025-11-07 11:50:04.975624,2025-11-07 11:50:04.975624 haskell-src-exts,unknown,Language.Haskell.Exts.ExactPrint,ExactP,src/Language/Haskell/Exts/ExactPrint.hs:224:24-29,"class Annotated ast => ExactP ast where exactP :: ast SrcSpanInfo -> EP ()",224,225,2025-11-07 11:50:04.975632,2025-11-07 11:50:04.975632 haskell-src-exts,unknown,Language.Haskell.Exts.Fixity,AppFixity,src/Language/Haskell/Exts/Fixity.hs:59:7-15,"class AppFixity ast where applyFixities :: Fail.MonadFail m => [Fixity] "" The fixities to account for."" -> ast SrcSpanInfo "" The element to tweak."" -> m (ast SrcSpanInfo) "" The same element, but with operator expressions updated, or a failure.""",59,65,2025-11-07 11:50:04.975639,2025-11-07 11:50:04.975639 haskell-src-exts,unknown,Language.Haskell.Exts.Syntax,Annotated,src/Language/Haskell/Exts/Syntax.hs:1105:22-30,"class Functor ast => Annotated ast where ann :: ast l -> l amap :: (l -> l) -> ast l -> ast l",1105,1111,2025-11-07 11:50:04.975647,2025-11-07 11:50:04.975647 haskell-src-exts,unknown,Language.Haskell.Exts.SrcLoc,SrcInfo,src/Language/Haskell/Exts/SrcLoc.hs:165:7-13,"class SrcInfo si where toSrcInfo :: SrcLoc -> [SrcSpan] -> SrcLoc -> si fromSrcInfo :: SrcSpanInfo -> si getPointLoc :: si -> SrcLoc fileName :: si -> String startLine :: si -> Int startColumn :: si -> Int getPointLoc si = SrcLoc (fileName si) (startLine si) (startColumn si)",165,173,2025-11-07 11:50:04.975654,2025-11-07 11:50:04.975654 haskell-src-exts,unknown,Language.Haskell.Exts.ParseMonad,Parseable,src/Language/Haskell/Exts/ParseMonad.hs:62:7-15,"class Parseable ast where parse :: String -> ParseResult ast parse = parseWithMode defaultParseMode parseWithMode :: ParseMode -> String -> ParseResult ast parseWithMode mode = runParserWithMode mode . parser $ fixities mode parseWithComments :: ParseMode -> String -> ParseResult (ast, [Comment]) parseWithComments mode = runParserWithModeComments mode . parser $ fixities mode parser :: Maybe [Fixity] -> P ast",62,74,2025-11-07 11:50:04.975662,2025-11-07 11:50:04.975662 haskell-src-exts,unknown,Language.Haskell.Exts.ExtScheme,Enabled,src/Language/Haskell/Exts/ExtScheme.hs:25:7-13,"class Enabled a where isEnabled :: a -> [KnownExtension] -> Bool",25,26,2025-11-07 11:50:04.975674,2025-11-07 11:50:04.975674 haskell-src-meta,unknown,Language.Haskell.Meta.Syntax.Translate,ToName,src/Language/Haskell/Meta/Syntax/Translate.hs:31:7-12,"class ToName a where toName :: a -> TH.Name",31,31,2025-11-07 11:50:06.787811,2025-11-07 11:50:06.787811 haskell-src-meta,unknown,Language.Haskell.Meta.Syntax.Translate,ToNames,src/Language/Haskell/Meta/Syntax/Translate.hs:32:7-13,"class ToNames a where toNames :: a -> [TH.Name]",32,32,2025-11-07 11:50:06.787824,2025-11-07 11:50:06.787824 haskell-src-meta,unknown,Language.Haskell.Meta.Syntax.Translate,ToLit,src/Language/Haskell/Meta/Syntax/Translate.hs:33:7-11,"class ToLit a where toLit :: a -> TH.Lit",33,33,2025-11-07 11:50:06.787831,2025-11-07 11:50:06.787831 haskell-src-meta,unknown,Language.Haskell.Meta.Syntax.Translate,ToType,src/Language/Haskell/Meta/Syntax/Translate.hs:34:7-12,"class ToType a where toType :: a -> TH.Type",34,34,2025-11-07 11:50:06.787837,2025-11-07 11:50:06.787837 haskell-src-meta,unknown,Language.Haskell.Meta.Syntax.Translate,ToPat,src/Language/Haskell/Meta/Syntax/Translate.hs:35:7-11,"class ToPat a where toPat :: a -> TH.Pat",35,35,2025-11-07 11:50:06.787842,2025-11-07 11:50:06.787842 haskell-src-meta,unknown,Language.Haskell.Meta.Syntax.Translate,ToExp,src/Language/Haskell/Meta/Syntax/Translate.hs:36:7-11,"class ToExp a where toExp :: a -> TH.Exp",36,36,2025-11-07 11:50:06.787848,2025-11-07 11:50:06.787848 haskell-src-meta,unknown,Language.Haskell.Meta.Syntax.Translate,ToDecs,src/Language/Haskell/Meta/Syntax/Translate.hs:37:7-12,"class ToDecs a where toDecs :: a -> [TH.Dec]",37,37,2025-11-07 11:50:06.787853,2025-11-07 11:50:06.787853 haskell-src-meta,unknown,Language.Haskell.Meta.Syntax.Translate,ToDec,src/Language/Haskell/Meta/Syntax/Translate.hs:38:7-11,"class ToDec a where toDec :: a -> TH.Dec",38,38,2025-11-07 11:50:06.787858,2025-11-07 11:50:06.787858 haskell-src-meta,unknown,Language.Haskell.Meta.Syntax.Translate,ToStmt,src/Language/Haskell/Meta/Syntax/Translate.hs:39:7-12,"class ToStmt a where toStmt :: a -> TH.Stmt",39,39,2025-11-07 11:50:06.787863,2025-11-07 11:50:06.787863 haskell-src-meta,unknown,Language.Haskell.Meta.Syntax.Translate,ToLoc,src/Language/Haskell/Meta/Syntax/Translate.hs:40:7-11,"class ToLoc a where toLoc :: a -> TH.Loc",40,40,2025-11-07 11:50:06.787869,2025-11-07 11:50:06.787869 haskell-src-meta,unknown,Language.Haskell.Meta.Syntax.Translate,ToCxt,src/Language/Haskell/Meta/Syntax/Translate.hs:41:7-11,"class ToCxt a where toCxt :: a -> TH.Cxt",41,41,2025-11-07 11:50:06.787874,2025-11-07 11:50:06.787874 haskell-src-meta,unknown,Language.Haskell.Meta.Syntax.Translate,ToPred,src/Language/Haskell/Meta/Syntax/Translate.hs:42:7-12,"class ToPred a where toPred :: a -> TH.Pred",42,42,2025-11-07 11:50:06.787879,2025-11-07 11:50:06.787879 haskell-src-meta,unknown,Language.Haskell.Meta.Syntax.Translate,ToTyVars,src/Language/Haskell/Meta/Syntax/Translate.hs:43:7-14,"class ToTyVars a where toTyVars :: a -> [TyVarBndr_ ()]",43,43,2025-11-07 11:50:06.787885,2025-11-07 11:50:06.787885 haskell-src-meta,unknown,Language.Haskell.Meta.Syntax.Translate,ToMaybeKind,src/Language/Haskell/Meta/Syntax/Translate.hs:44:7-17,"class ToMaybeKind a where toMaybeKind :: a -> Maybe TH.Kind",44,44,2025-11-07 11:50:06.787890,2025-11-07 11:50:06.787890 haskell-src-meta,unknown,Language.Haskell.Meta.Syntax.Translate,ToInjectivityAnn,src/Language/Haskell/Meta/Syntax/Translate.hs:45:7-22,"class ToInjectivityAnn a where toInjectivityAnn :: a -> TH.InjectivityAnn",45,45,2025-11-07 11:50:06.787896,2025-11-07 11:50:06.787896 haskell-src-meta,unknown,Language.Haskell.Meta.Syntax.Translate,ToDerivClauses,src/Language/Haskell/Meta/Syntax/Translate.hs:49:7-20,"class ToDerivClauses a where toDerivClauses :: a -> [DerivClause]",49,49,2025-11-07 11:50:06.787901,2025-11-07 11:50:06.787901 hedgehog,unknown,Hedgehog.Internal.Distributive,MonadTransDistributive,src/Hedgehog/Internal/Distributive.hs:31:7-28,"class MonadTransDistributive g where type Transformer (f :: (Type -> Type) -> Type -> Type) (g :: (Type -> Type) -> Type -> Type) (m :: Type -> Type) :: Constraint type Transformer f g m = (Monad m, Monad (f m), Monad (g m), Monad (f (g m)), MonadTrans f, MFunctor f) distributeT :: Transformer f g m => g (f m) a -> f (g m) a",31,48,2025-11-07 11:50:09.561799,2025-11-07 11:50:09.561799 hopenssl,unknown,OpenSSL.Digest,Digestable,src/OpenSSL/Digest.hs:133:7-16,"class Digestable a where updateChunk :: Context -> a -> IO ()",133,134,2025-11-07 11:50:15.853124,2025-11-07 11:50:15.853124 hedgehog,unknown,Hedgehog.Internal.Gen,MonadGen,src/Hedgehog/Internal/Gen.hs:357:39-46,"class (Monad m, Monad (GenBase m)) => MonadGen m where type GenBase m :: (Type -> Type) toGenT :: m a -> GenT (GenBase m) a fromGenT :: GenT (GenBase m) a -> m a",357,366,2025-11-07 11:50:09.561820,2025-11-07 11:50:09.561820 hedgehog,unknown,Hedgehog.Internal.Property,MonadTest,src/Hedgehog/Internal/Property.hs:747:18-26,"class Monad m => MonadTest m where liftTest :: Test a -> m a",747,748,2025-11-07 11:50:09.561828,2025-11-07 11:50:09.561828 hedgehog,unknown,Hedgehog.Internal.HTraversable,HTraversable,src/Hedgehog/Internal/HTraversable.hs:14:7-18,"class HTraversable t where htraverse :: Applicative f => (forall a. g a -> f (h a)) -> t g -> f (t h)",14,15,2025-11-07 11:50:09.561834,2025-11-07 11:50:09.561834 hedgehog,unknown,Hedgehog.Function.Internal,GArg,src/Hedgehog/Function/Internal.hs:59:7-10,"class GArg a where gbuild' :: (a x -> c) -> a x :-> c",59,60,2025-11-07 11:50:10.893977,2025-11-07 11:50:10.893977 hedgehog,unknown,Hedgehog.Function.Internal,Arg,src/Hedgehog/Function/Internal.hs:67:7-9,"class Arg a where build :: (a -> c) -> a :-> c default build :: (Generic a, GArg (Rep a)) => (a -> c) -> a :-> c build = gbuild",67,70,2025-11-07 11:50:10.893991,2025-11-07 11:50:10.893991 hedgehog,unknown,Hedgehog.Function.Internal,GVary,src/Hedgehog/Function/Internal.hs:79:7-11,"class GVary a where gvary' :: CoGenT m (a x)",79,80,2025-11-07 11:50:10.893999,2025-11-07 11:50:10.893999 hedgehog,unknown,Hedgehog.Function.Internal,Vary,src/Hedgehog/Function/Internal.hs:116:7-10,"class Vary a where vary :: CoGenT m a default vary :: (Generic a, GVary (Rep a)) => CoGenT m a vary = gvary",116,119,2025-11-07 11:50:10.894004,2025-11-07 11:50:10.894004 hedis,unknown,Database.Redis.Types,RedisResult,src/Database/Redis/Types.hs:29:7-17,"class RedisResult a where decode :: Reply -> Either Reply a",29,30,2025-11-07 11:50:12.251454,2025-11-07 11:50:12.251454 hedis,unknown,Database.Redis.Core,RedisCtx,src/Database/Redis/Core.hs:38:25-32,"class (MonadRedis m) => RedisCtx m f | m -> f where returnDecode :: RedisResult a => Reply -> m (f a)",38,39,2025-11-07 11:50:12.251461,2025-11-07 11:50:12.251461 hedis,unknown,Database.Redis.Core,MonadRedis,src/Database/Redis/Core.hs:41:20-29,"class (Monad m) => MonadRedis m where liftRedis :: Redis a -> m a",41,42,2025-11-07 11:50:12.251467,2025-11-07 11:50:12.251467 hedis,unknown,Database.Redis.ManualCommands,EncodeArgs,src/Database/Redis/ManualCommands.hs:707:7-16,"class EncodeArgs a where encodeArgs :: a -> [ByteString]",707,708,2025-11-07 11:50:12.251475,2025-11-07 11:50:12.251475 hedis,unknown,Database.Redis.PubSub,Command,src/Database/Redis/PubSub.hs:107:7-13,"class Command a where redisCmd :: a -> ByteString updatePending :: a -> Int -> Int",107,109,2025-11-07 11:50:12.251481,2025-11-07 11:50:12.251481 hex,unknown,Data.Hex,Hex,Data/Hex.hs:22:7-9,"class Hex t where hex :: t -> t unhex :: t -> Either String t unhexM :: MonadFail m => t -> m t unhexM = either fail return . unhex",22,29,2025-11-07 11:50:13.487377,2025-11-07 11:50:13.487377 hourglass,unknown,Time.Types,TimeInterval,Time/Types.hs:51:7-18,"class TimeInterval i where toSeconds :: i -> Seconds fromSeconds :: Seconds -> (i, Seconds)",51,53,2025-11-07 11:50:18.290122,2025-11-07 11:50:18.290122 hourglass,unknown,Data.Hourglass.Format,TimeFormat,Data/Hourglass/Format.hs:90:7-16,"class TimeFormat format where toFormat :: format -> TimeFormatString",90,91,2025-11-07 11:50:18.290135,2025-11-07 11:50:18.290135 hourglass,unknown,Data.Hourglass.Zone,Timezone,Data/Hourglass/Zone.hs:18:7-14,"class Timezone tz where timezoneOffset :: tz -> Int timezoneName :: tz -> String timezoneName = tzMinutesPrint . timezoneOffset",18,23,2025-11-07 11:50:18.290142,2025-11-07 11:50:18.290142 hourglass,unknown,Data.Hourglass.Time,Timeable,Data/Hourglass/Time.hs:57:7-14,"class Timeable t where timeGetElapsedP :: t -> ElapsedP timeGetElapsed :: t -> Elapsed timeGetElapsed t = e where ElapsedP e _ = timeGetElapsedP t timeGetNanoSeconds :: t -> NanoSeconds timeGetNanoSeconds t = ns where ElapsedP _ ns = timeGetElapsedP t",57,76,2025-11-07 11:50:18.290148,2025-11-07 11:50:18.290148 hourglass,unknown,Data.Hourglass.Time,Time,Data/Hourglass/Time.hs:81:21-24,"class Timeable t => Time t where timeFromElapsedP :: ElapsedP -> t timeFromElapsed :: Elapsed -> t timeFromElapsed e = timeFromElapsedP (ElapsedP e 0)",81,89,2025-11-07 11:50:18.290156,2025-11-07 11:50:18.290156 hourglass,unknown,Data.Hourglass.Epoch,Epoch,Data/Hourglass/Epoch.hs:58:7-11,"class Epoch epoch where epochName :: epoch -> String epochDiffToUnix :: epoch -> Seconds",58,66,2025-11-07 11:50:18.290162,2025-11-07 11:50:18.290162 hspec,unknown,Test.Hspec.Discover,IsFormatter,src/Test/Hspec/Discover.hs:18:7-17,"class IsFormatter a where toFormatter :: a -> IO Formatter",18,19,2025-11-07 11:50:19.510187,2025-11-07 11:50:19.510187 hspec-core,unknown,Test.Hspec.Core.Example,Example,src/Test/Hspec/Core/Example.hs:48:7-13,"class Example e where type Arg e type Arg e = () evaluateExample :: e -> Params -> (ActionWith (Arg e) -> IO ()) -> ProgressCallback -> IO Result",48,51,2025-11-07 11:50:22.221447,2025-11-07 11:50:22.221447 hspec,unknown,Test.Hspec.Core.Example,Example,hspec-core/src/Test/Hspec/Core/Example.hs:47:7-13,"class Example e where type Arg e type Arg e = () evaluateExample :: e -> Params -> (ActionWith (Arg e) -> IO ()) -> ProgressCallback -> IO Result",47,50,2025-11-07 11:50:27.349419,2025-11-07 11:50:27.349419 hspec,unknown,Test.Hspec.Core.Formatters.Pretty.Parser,ToExpression,hspec-core/src/Test/Hspec/Core/Formatters/Pretty/Parser.hs:115:7-18,"class ToExpression a where toExpression :: a -> Either Error Expression",115,116,2025-11-07 11:50:27.349434,2025-11-07 11:50:27.349434 hspec,unknown,Test.HUnit.Base,Assertable,vendor/HUnit-1.6.2.0/src/Test/HUnit/Base.hs:88:7-16,"class Assertable t where assert :: HasCallStack => t -> Assertion",88,89,2025-11-07 11:50:27.349442,2025-11-07 11:50:27.349442 hspec,unknown,Test.HUnit.Base,ListAssertable,vendor/HUnit-1.6.2.0/src/Test/HUnit/Base.hs:104:7-20,"class ListAssertable t where listAssert :: HasCallStack => [t] -> Assertion",104,105,2025-11-07 11:50:27.349447,2025-11-07 11:50:27.349447 hspec,unknown,Test.HUnit.Base,AssertionPredicable,vendor/HUnit-1.6.2.0/src/Test/HUnit/Base.hs:140:7-25,"class AssertionPredicable t where assertionPredicate :: t -> AssertionPredicate",140,141,2025-11-07 11:50:27.349453,2025-11-07 11:50:27.349453 hspec,unknown,Test.HUnit.Base,Testable,vendor/HUnit-1.6.2.0/src/Test/HUnit/Base.hs:203:7-14,"class Testable t where test :: HasCallStack => t -> Test",203,204,2025-11-07 11:50:27.349459,2025-11-07 11:50:27.349459 hspec,unknown,Test.Hspec.Wai.QuickCheck,Testable,src/Test/Hspec/Wai/QuickCheck.hs:28:7-14,"class Testable a where type State a toProperty :: a -> WaiProperty (State a)",28,30,2025-11-07 11:50:29.905025,2025-11-07 11:50:29.905025 http-api-data,unknown,Web.Internal.HttpApiData,ToHttpApiData,src/Web/Internal/HttpApiData.hs:89:7-19,"class ToHttpApiData a where {-# MINIMAL toUrlPiece | toQueryParam #-} toUrlPiece :: a -> Text toUrlPiece = toQueryParam toEncodedUrlPiece :: a -> BS.Builder toEncodedUrlPiece = H.encodePathSegmentsRelative . (: []) . toUrlPiece toHeader :: a -> ByteString toHeader = encodeUtf8 . toUrlPiece toQueryParam :: a -> Text toQueryParam = toUrlPiece",89,107,2025-11-07 11:50:32.449022,2025-11-07 11:50:32.449022 http-api-data,unknown,Web.Internal.HttpApiData,FromHttpApiData,src/Web/Internal/HttpApiData.hs:113:7-21,"class FromHttpApiData a where {-# MINIMAL parseUrlPiece | parseQueryParam #-} parseUrlPiece :: Text -> Either Text a parseUrlPiece = parseQueryParam parseHeader :: ByteString -> Either Text a parseHeader = parseUrlPiece <=< (left (T.pack . show) . decodeUtf8') parseQueryParam :: Text -> Either Text a parseQueryParam = parseUrlPiece",113,125,2025-11-07 11:50:32.449039,2025-11-07 11:50:32.449039 syb,unknown,GetC,TypeUnify'',tests/GetC.hs:129:10-20,"class TypeUnify'' x a b | x a -> b, x b -> a",129,129,2025-11-07 11:55:36.962019,2025-11-07 11:55:36.962019 http-api-data,unknown,Web.Internal.FormUrlEncoded,ToFormKey,src/Web/Internal/FormUrlEncoded.hs:89:7-15,"class ToFormKey k where toFormKey :: k -> Text",89,91,2025-11-07 11:50:32.449049,2025-11-07 11:50:32.449049 http-api-data,unknown,Web.Internal.FormUrlEncoded,FromFormKey,src/Web/Internal/FormUrlEncoded.hs:151:7-17,"class FromFormKey k where parseFormKey :: Text -> Either Text k",151,153,2025-11-07 11:50:32.449055,2025-11-07 11:50:32.449055 http-api-data,unknown,Web.Internal.FormUrlEncoded,ToForm,src/Web/Internal/FormUrlEncoded.hs:269:7-12,"class ToForm a where toForm :: a -> Form default toForm :: (Generic a, GToForm a (Rep a)) => a -> Form toForm = genericToForm defaultFormOptions",269,273,2025-11-07 11:50:32.449061,2025-11-07 11:50:32.449061 http-api-data,unknown,Web.Internal.FormUrlEncoded,GToForm,src/Web/Internal/FormUrlEncoded.hs:348:7-13,"class GToForm t (f :: * -> *) where gToForm :: Proxy t -> FormOptions -> f x -> Form",348,349,2025-11-07 11:50:32.449067,2025-11-07 11:50:32.449067 http-api-data,unknown,Web.Internal.FormUrlEncoded,FromForm,src/Web/Internal/FormUrlEncoded.hs:420:7-14,"class FromForm a where fromForm :: Form -> Either Text a default fromForm :: (Generic a, GFromForm a (Rep a)) => Form -> Either Text a fromForm = genericFromForm defaultFormOptions",420,424,2025-11-07 11:50:32.449073,2025-11-07 11:50:32.449073 http-api-data,unknown,Web.Internal.FormUrlEncoded,GFromForm,src/Web/Internal/FormUrlEncoded.hs:496:7-15,"class GFromForm t (f :: * -> *) where gFromForm :: Proxy t -> FormOptions -> Form -> Either Text (f x)",496,497,2025-11-07 11:50:32.449080,2025-11-07 11:50:32.449080 http-client,unknown,Network.HTTP.Client.Types,HasHttpManager,Network/HTTP/Client/Types.hs:837:7-20,"class HasHttpManager a where getHttpManager :: a -> Manager",837,838,2025-11-07 11:50:33.816492,2025-11-07 11:50:33.816492 http-media,unknown,Network.HTTP.Media.Accept,Accept,src/Network/HTTP/Media/Accept.hs:17:19-24,"class (Show a) => Accept a where parseAccept :: ByteString -> Maybe a matches :: a -> a -> Bool moreSpecificThan :: a -> a -> Bool hasExtensionParameters :: Proxy a -> Bool hasExtensionParameters _ = False",17,47,2025-11-07 11:50:38.774878,2025-11-07 11:50:38.774878 http-media,unknown,Network.HTTP.Media.RenderHeader,RenderHeader,src/Network/HTTP/Media/RenderHeader.hs:16:7-18,"class RenderHeader h where renderHeader :: h -> ByteString",16,18,2025-11-07 11:50:38.774890,2025-11-07 11:50:38.774890 http-types,unknown,Network.HTTP.Types.QueryLike,QueryLike,Network/HTTP/Types/QueryLike.hs:24:7-15,"class QueryLike a where toQuery :: a -> Query",24,26,2025-11-07 11:50:40.113782,2025-11-07 11:50:40.113782 http-types,unknown,Network.HTTP.Types.QueryLike,QueryKeyLike,Network/HTTP/Types/QueryLike.hs:29:7-18,"class QueryKeyLike a where toQueryKey :: a -> B.ByteString",29,30,2025-11-07 11:50:40.113792,2025-11-07 11:50:40.113792 http-types,unknown,Network.HTTP.Types.QueryLike,QueryValueLike,Network/HTTP/Types/QueryLike.hs:33:7-20,"class QueryValueLike a where toQueryValue :: a -> Maybe B.ByteString",33,34,2025-11-07 11:50:40.113798,2025-11-07 11:50:40.113798 hw-kafka-client,unknown,Kafka.Internal.Setup,HasKafka,src/Kafka/Internal/Setup.hs:69:7-14,"class HasKafka a where getKafka :: a -> Kafka",69,70,2025-11-07 11:50:43.144182,2025-11-07 11:50:43.144182 hw-kafka-client,unknown,Kafka.Internal.Setup,HasKafkaConf,src/Kafka/Internal/Setup.hs:72:7-18,"class HasKafkaConf a where getKafkaConf :: a -> KafkaConf",72,73,2025-11-07 11:50:43.144197,2025-11-07 11:50:43.144197 hw-kafka-client,unknown,Kafka.Internal.Setup,HasTopicConf,src/Kafka/Internal/Setup.hs:75:7-18,"class HasTopicConf a where getTopicConf :: a -> TopicConf",75,76,2025-11-07 11:50:43.144207,2025-11-07 11:50:43.144207 ieee,unknown,Numeric.IEEE,IEEE,Numeric/IEEE.hs:26:24-27,"class (RealFloat a) => IEEE a where infinity :: a minNormal :: a maxFinite :: a epsilon :: a copySign :: a -> a -> a identicalIEEE :: a -> a -> Bool succIEEE :: a -> a predIEEE :: a -> a bisectIEEE :: a -> a -> a sameSignificandBits :: a -> a -> Int nan :: a nanWithPayload :: Word64 -> a maxNaNPayload :: a -> Word64 nanPayload :: a -> Word64",26,76,2025-11-07 11:50:44.449340,2025-11-07 11:50:44.449340 ieee,unknown,Data.AEq,AEq,Data/AEq.hs:24:15-17,"class Eq a => AEq a where (===) :: a -> a -> Bool (===) = (==) {-# INLINE (===) #-} (~==) :: a -> a -> Bool (~==) = (==) {-# INLINE (~==) #-}",24,72,2025-11-07 11:50:44.449355,2025-11-07 11:50:44.449355 ieee754,unknown,Numeric.IEEE,IEEE,Numeric/IEEE.hs:26:24-27,"class (RealFloat a) => IEEE a where infinity :: a minDenormal :: a minNormal :: a maxFinite :: a epsilon :: a copySign :: a -> a -> a identicalIEEE :: a -> a -> Bool succIEEE :: a -> a predIEEE :: a -> a bisectIEEE :: a -> a -> a sameSignificandBits :: a -> a -> Int nan :: a nanWithPayload :: Word64 -> a maxNaNPayload :: a -> Word64 nanPayload :: a -> Word64",26,79,2025-11-07 11:50:45.722189,2025-11-07 11:50:45.722189 ieee754,unknown,Data.AEq,AEq,Data/AEq.hs:24:15-17,"class Eq a => AEq a where (===) :: a -> a -> Bool (===) = (==) {-# INLINE (===) #-} (~==) :: a -> a -> Bool (~==) = (==) {-# INLINE (~==) #-}",24,72,2025-11-07 11:50:45.722204,2025-11-07 11:50:45.722204 indexed-list-literals,unknown,Data.IndexedListLiterals,IndexedListLiterals,src/Data/IndexedListLiterals.hs:69:7-25,"class IndexedListLiterals (input :: Type) (length :: Nat) (output :: Type) | output length -> input, input -> output length where toList :: input -> [output] fromList' :: [output] -> input",69,80,2025-11-07 11:50:46.951127,2025-11-07 11:50:46.951127 indexed-profunctors,unknown,Data.Profunctor.Indexed,Profunctor,src/Data/Profunctor/Indexed.hs:121:7-16,"class Profunctor p where dimap :: (a -> b) -> (c -> d) -> p i b c -> p i a d lmap :: (a -> b) -> p i b c -> p i a c rmap :: (c -> d) -> p i b c -> p i b d lcoerce' :: Coercible a b => p i a c -> p i b c default lcoerce' :: Coercible (p i a c) (p i b c) => p i a c -> p i b c lcoerce' = coerce rcoerce' :: Coercible a b => p i c a -> p i c b default rcoerce' :: Coercible (p i c a) (p i c b) => p i c a -> p i c b rcoerce' = coerce conjoined__ :: (p i a b -> p i s t) -> (p i a b -> p j s t) -> (p i a b -> p j s t) default conjoined__ :: Coercible (p i s t) (p j s t) => (p i a b -> p i s t) -> (p i a b -> p j s t) -> (p i a b -> p j s t) conjoined__ f _ = coerce . f ixcontramap :: (j -> i) -> p i a b -> p j a b default ixcontramap :: Coercible (p i a b) (p j a b) => (j -> i) -> p i a b -> p j a b ixcontramap _ = coerce",121,157,2025-11-07 11:50:48.393485,2025-11-07 11:50:48.393485 indexed-profunctors,unknown,Data.Profunctor.Indexed,Strong,src/Data/Profunctor/Indexed.hs:242:23-28,"class Profunctor p => Strong p where first' :: p i a b -> p i (a, c) (b, c) second' :: p i a b -> p i (c, a) (c, b) linear :: (forall f. Functor f => (a -> f b) -> s -> f t) -> p i a b -> p i s t linear f = dimap ((\ (Context bt a) -> (a, bt)) . f (Context id)) (\ (b, bt) -> bt b) . first' ilinear :: (forall f. Functor f => (i -> a -> f b) -> s -> f t) -> p j a b -> p (i -> j) s t default ilinear :: Coercible (p j s t) (p (i -> j) s t) => (forall f. Functor f => (i -> a -> f b) -> s -> f t) -> p j a b -> p (i -> j) s t ilinear f = coerce . linear (\ afb -> f $ \ _ -> afb)",242,266,2025-11-07 11:50:48.393506,2025-11-07 11:50:48.393506 indexed-profunctors,unknown,Data.Profunctor.Indexed,Costrong,src/Data/Profunctor/Indexed.hs:337:23-30,"class Profunctor p => Costrong p where unfirst :: p i (a, d) (b, d) -> p i a b unsecond :: p i (d, a) (d, b) -> p i a b",337,339,2025-11-07 11:50:48.393519,2025-11-07 11:50:48.393519 th-expand-syns,unknown,testing.Types,Class1,testing/Types.hs:35:7-12,"class Class1 a where type AT1 a",35,36,2025-11-07 11:56:15.946785,2025-11-07 11:56:15.946785 indexed-profunctors,unknown,Data.Profunctor.Indexed,Choice,src/Data/Profunctor/Indexed.hs:343:23-28,"class Profunctor p => Choice p where left' :: p i a b -> p i (Either a c) (Either b c) right' :: p i a b -> p i (Either c a) (Either c b)",343,345,2025-11-07 11:50:48.393526,2025-11-07 11:50:48.393526 indexed-profunctors,unknown,Data.Profunctor.Indexed,Cochoice,src/Data/Profunctor/Indexed.hs:391:23-30,"class Profunctor p => Cochoice p where unleft :: p i (Either a d) (Either b d) -> p i a b unright :: p i (Either d a) (Either d b) -> p i a b",391,393,2025-11-07 11:50:48.393533,2025-11-07 11:50:48.393533 indexed-profunctors,unknown,Data.Profunctor.Indexed,Visiting,src/Data/Profunctor/Indexed.hs:413:31-38,"class (Choice p, Strong p) => Visiting p where visit :: forall i s t a b. (forall f. Functor f => (forall r. r -> f r) -> (a -> f b) -> s -> f t) -> p i a b -> p i s t visit f = let match :: s -> Either a t match s = f Right Left s update :: s -> b -> t update s b = runIdentity $ f Identity (\ _ -> Identity b) s in dimap (\ s -> (match s, s)) (\ (ebt, s) -> either (update s) id ebt) . first' . left' {-# INLINE visit #-} ivisit :: (forall f. Functor f => (forall r. r -> f r) -> (i -> a -> f b) -> s -> f t) -> p j a b -> p (i -> j) s t default ivisit :: Coercible (p j s t) (p (i -> j) s t) => (forall f. Functor f => (forall r. r -> f r) -> (i -> a -> f b) -> s -> f t) -> p j a b -> p (i -> j) s t ivisit f = coerce . visit (\ point afb -> f point $ \ _ -> afb)",413,439,2025-11-07 11:50:48.393539,2025-11-07 11:50:48.393539 indexed-profunctors,unknown,Data.Profunctor.Indexed,Traversing,src/Data/Profunctor/Indexed.hs:492:21-30,"class Visiting p => Traversing p where wander :: (forall f. Applicative f => (a -> f b) -> s -> f t) -> p i a b -> p i s t iwander :: (forall f. Applicative f => (i -> a -> f b) -> s -> f t) -> p j a b -> p (i -> j) s t",492,500,2025-11-07 11:50:48.393555,2025-11-07 11:50:48.393555 indexed-profunctors,unknown,Data.Profunctor.Indexed,Mapping,src/Data/Profunctor/Indexed.hs:532:23-29,"class Traversing p => Mapping p where roam :: ((a -> b) -> s -> t) -> p i a b -> p i s t iroam :: ((i -> a -> b) -> s -> t) -> p j a b -> p (i -> j) s t",532,540,2025-11-07 11:50:48.393562,2025-11-07 11:50:48.393562 indexed-traversable,unknown,WithIndex,FunctorWithIndex,src/WithIndex.hs:88:20-35,"class Functor f => FunctorWithIndex i f | f -> i where imap :: (i -> a -> b) -> f a -> f b default imap :: TraversableWithIndex i f => (i -> a -> b) -> f a -> f b imap = imapDefault {-# INLINE imap #-}",88,95,2025-11-07 11:50:49.612195,2025-11-07 11:50:49.612195 indexed-traversable,unknown,WithIndex,FoldableWithIndex,src/WithIndex.hs:108:21-37,"class Foldable f => FoldableWithIndex i f | f -> i where ifoldMap :: Monoid m => (i -> a -> m) -> f a -> m default ifoldMap :: (TraversableWithIndex i f, Monoid m) => (i -> a -> m) -> f a -> m ifoldMap = ifoldMapDefault {-# INLINE ifoldMap #-} ifoldMap' :: Monoid m => (i -> a -> m) -> f a -> m ifoldMap' f = ifoldl' (\ i acc a -> mappend acc (f i a)) mempty {-# INLINE ifoldMap' #-} ifoldr :: (i -> a -> b -> b) -> b -> f a -> b ifoldr f z t = appEndo (ifoldMap (Endo #.. f) t) z {-# INLINE ifoldr #-} ifoldl :: (i -> b -> a -> b) -> b -> f a -> b ifoldl f z t = appEndo (getDual (ifoldMap (\ i -> Dual #. Endo #. flip (f i)) t)) z {-# INLINE ifoldl #-} ifoldr' :: (i -> a -> b -> b) -> b -> f a -> b ifoldr' f z0 xs = ifoldl f' id xs z0 where f' i k x z = k $! f i x z {-# INLINE ifoldr' #-} ifoldl' :: (i -> b -> a -> b) -> b -> f a -> b ifoldl' f z0 xs = ifoldr f' id xs z0 where f' i x k z = k $! f i z x {-# INLINE ifoldl' #-}",108,180,2025-11-07 11:50:49.612211,2025-11-07 11:50:49.612211 indexed-traversable,unknown,WithIndex,TraversableWithIndex,src/WithIndex.hs:198:71-90,"class (FunctorWithIndex i t, FoldableWithIndex i t, Traversable t) => TraversableWithIndex i t | t -> i where itraverse :: Applicative f => (i -> a -> f b) -> t a -> f (t b) default itraverse :: (i ~ Int, Applicative f) => (i -> a -> f b) -> t a -> f (t b) itraverse f s = snd $ runIndexing (traverse (\ a -> Indexing (\ i -> i `seq` (i + 1, f i a))) s) 0 {-# INLINE itraverse #-}",198,209,2025-11-07 11:50:49.612228,2025-11-07 11:50:49.612228 inline-js-core,unknown,Language.JavaScript.Inline.Core.Export,Export,src/Language/JavaScript/Inline/Core/Export.hs:17:7-12,"class Export f where exportArgsFromJS :: Proxy f -> [Dict FromJS] exportMonomorphize :: Session -> f -> [LBS.ByteString] -> IO JSExpr",17,19,2025-11-07 11:50:54.824144,2025-11-07 11:50:54.824144 inline-js-core,unknown,Language.JavaScript.Inline.Core.Class,ToJS,src/Language/JavaScript/Inline/Core/Class.hs:30:7-10,"class ToJS a where toJS :: a -> JSExpr",30,32,2025-11-07 11:50:54.824158,2025-11-07 11:50:54.824158 inline-js-core,unknown,Language.JavaScript.Inline.Core.Class,FromJS,src/Language/JavaScript/Inline/Core/Class.hs:50:7-12,"class FromJS a where rawJSType :: Proxy a -> RawJSType toRawJSType :: Proxy a -> JSExpr fromJS :: Session -> LBS.ByteString -> IO a",50,60,2025-11-07 11:50:54.824165,2025-11-07 11:50:54.824165 inline-js-core,unknown,Language.JavaScript.Inline.Core.Import,Import,src/Language/JavaScript/Inline/Core/Import.hs:16:7-12,"class Import f where importMonomorphize :: Session -> JSVal -> [JSExpr] -> f",16,17,2025-11-07 11:50:54.824172,2025-11-07 11:50:54.824172 instance-control,unknown,Control.Instances.Morph,Morph',Control/Instances/Morph.hs:48:7-12,"class Morph' fl x y where repr :: fl -> x a -> y a",48,49,2025-11-07 11:50:59.043773,2025-11-07 11:50:59.043773 instance-control,unknown,Control.Instances.Morph,GeneratableMorph,Control/Instances/Morph.hs:89:7-22,"class GeneratableMorph db ch where generateMorph :: db -> ch",89,90,2025-11-07 11:50:59.043785,2025-11-07 11:50:59.043785 instance-control,unknown,Control.Instances.Morph,HasMorph,Control/Instances/Morph.hs:108:7-14,"class HasMorph r m where getMorph :: r -> m",108,109,2025-11-07 11:50:59.043791,2025-11-07 11:50:59.043791 instance-control,unknown,Control.Instances.Morph,CorrectPath,Control/Instances/Morph.hs:120:7-17,class CorrectPath from to path,120,120,2025-11-07 11:50:59.043797,2025-11-07 11:50:59.043797 invariant,unknown,Data.Functor.Invariant,Invariant,src/Data/Functor/Invariant.hs:187:7-15,"class Invariant f where invmap :: (a -> b) -> (b -> a) -> f a -> f b default invmap :: (Generic1 f, Invariant (Rep1 f)) => (a -> b) -> (b -> a) -> f a -> f b invmap = genericInvmap",187,191,2025-11-07 11:51:03.002685,2025-11-07 11:51:03.002685 invariant,unknown,Data.Functor.Invariant,Invariant2,src/Data/Functor/Invariant.hs:692:7-16,"class Invariant2 f where invmap2 :: (a -> c) -> (c -> a) -> (b -> d) -> (d -> b) -> f a b -> f c d",692,693,2025-11-07 11:51:03.002701,2025-11-07 11:51:03.002701 io-streams,unknown,System.IO.Streams.Internal.Attoparsec,ParseData,src/System/IO/Streams/Internal/Attoparsec.hs:50:23-31,"class (IsString i) => ParseData i where parse :: Parser i a -> i -> IResult i a feed :: IResult i r -> i -> IResult i r null :: i -> Bool",50,53,2025-11-07 11:51:04.806252,2025-11-07 11:51:04.806252 iproute,unknown,Data.IP.Op,Addr,Data/IP/Op.hs:15:15-18,"class Eq a => Addr a where masked :: a -> a -> a intToMask :: Int -> a",15,40,2025-11-07 11:51:07.704641,2025-11-07 11:51:07.704641 iproute,unknown,Data.IP.RouteTable.Internal,Routable,Data/IP/RouteTable/Internal.hs:35:17-24,"class Addr a => Routable a where intToTBit :: Int -> a isZero :: a -> a -> Bool",35,46,2025-11-07 11:51:07.704654,2025-11-07 11:51:07.704654 isomorphism,unknown,IsomorphismClass,IsomorphicTo,library/IsomorphismClass.hs:169:27-38,"class IsomorphicTo b a => IsomorphicTo a b where to :: b -> a",169,170,2025-11-07 11:51:11.639127,2025-11-07 11:51:11.639127 jose,unknown,Crypto.JWT,HasClaimsSet,src/Crypto/JWT.hs:296:7-18,"class HasClaimsSet a where claimsSet :: Lens' a ClaimsSet claimIss :: Lens' a (Maybe StringOrURI) {-# INLINE claimIss #-} claimSub :: Lens' a (Maybe StringOrURI) {-# INLINE claimSub #-} claimAud :: Lens' a (Maybe Audience) {-# INLINE claimAud #-} claimExp :: Lens' a (Maybe NumericDate) {-# INLINE claimExp #-} claimNbf :: Lens' a (Maybe NumericDate) {-# INLINE claimNbf #-} claimIat :: Lens' a (Maybe NumericDate) {-# INLINE claimIat #-} claimJti :: Lens' a (Maybe T.Text) {-# INLINE claimJti #-} claimAud = ((.) claimsSet) claimAud claimExp = ((.) claimsSet) claimExp claimIat = ((.) claimsSet) claimIat claimIss = ((.) claimsSet) claimIss claimJti = ((.) claimsSet) claimJti claimNbf = ((.) claimsSet) claimNbf claimSub = ((.) claimsSet) claimSub",296,362,2025-11-07 11:51:13.526242,2025-11-07 11:51:13.526242 jose,unknown,Crypto.JWT,HasAllowedSkew,src/Crypto/JWT.hs:476:7-20,"class HasAllowedSkew s where allowedSkew :: Lens' s NominalDiffTime",476,477,2025-11-07 11:51:13.526267,2025-11-07 11:51:13.526267 jose,unknown,Crypto.JWT,HasAudiencePredicate,src/Crypto/JWT.hs:480:7-26,"class HasAudiencePredicate s where audiencePredicate :: Lens' s (StringOrURI -> Bool)",480,481,2025-11-07 11:51:13.526290,2025-11-07 11:51:13.526290 jose,unknown,Crypto.JWT,HasIssuerPredicate,src/Crypto/JWT.hs:484:7-24,"class HasIssuerPredicate s where issuerPredicate :: Lens' s (StringOrURI -> Bool)",484,485,2025-11-07 11:51:13.526297,2025-11-07 11:51:13.526297 jose,unknown,Crypto.JWT,HasCheckIssuedAt,src/Crypto/JWT.hs:488:7-22,"class HasCheckIssuedAt s where checkIssuedAt :: Lens' s Bool",488,489,2025-11-07 11:51:13.526303,2025-11-07 11:51:13.526303 jose,unknown,Crypto.JOSE.JWS,HasJWSHeader,src/Crypto/JOSE/JWS.hs:200:7-18,"class HasJWSHeader a where jwsHeader :: Lens' (a p) (JWSHeader p)",200,201,2025-11-07 11:51:13.526310,2025-11-07 11:51:13.526310 jose,unknown,Crypto.JOSE.JWS,HasValidationSettings,src/Crypto/JOSE/JWS.hs:537:7-27,"class HasValidationSettings a where validationSettings :: Lens' a ValidationSettings validationSettingsAlgorithms :: Lens' a (S.Set Alg) validationSettingsAlgorithms = validationSettings . go where go f (ValidationSettings algs pol) = (`ValidationSettings` pol) <$> f algs validationSettingsValidationPolicy :: Lens' a ValidationPolicy validationSettingsValidationPolicy = validationSettings . go where go f (ValidationSettings algs pol) = ValidationSettings algs <$> f pol",537,548,2025-11-07 11:51:13.526316,2025-11-07 11:51:13.526316 jose,unknown,Crypto.JOSE.JWS,HasAlgorithms,src/Crypto/JOSE/JWS.hs:553:7-19,"class HasAlgorithms s where algorithms :: Lens' s (S.Set Alg)",553,554,2025-11-07 11:51:13.526353,2025-11-07 11:51:13.526353 jose,unknown,Crypto.JOSE.JWS,HasValidationPolicy,src/Crypto/JOSE/JWS.hs:555:7-25,"class HasValidationPolicy s where validationPolicy :: Lens' s ValidationPolicy",555,556,2025-11-07 11:51:13.526358,2025-11-07 11:51:13.526358 jose,unknown,Crypto.JOSE.Header,HasParams,src/Crypto/JOSE/Header.hs:88:7-15,"class HasParams (a :: Type -> Type) where params :: ProtectionIndicator p => a p -> [(Bool, Pair)] extensions :: Proxy a -> [T.Text] extensions = const [] parseParamsFor :: (HasParams b, ProtectionIndicator p) => Proxy b -> Maybe Object -> Maybe Object -> Parser (a p)",88,100,2025-11-07 11:51:13.526365,2025-11-07 11:51:13.526365 jose,unknown,Crypto.JOSE.Header,ProtectionIndicator,src/Crypto/JOSE/Header.hs:146:15-33,"class Eq a => ProtectionIndicator a where getProtected :: a getUnprotected :: Maybe a",146,152,2025-11-07 11:51:13.526373,2025-11-07 11:51:13.526373 jose,unknown,Crypto.JOSE.Header,HasAlg,src/Crypto/JOSE/Header.hs:340:7-12,"class HasAlg a where alg :: Lens' (a p) (HeaderParam p JWA.JWS.Alg)",340,341,2025-11-07 11:51:13.526389,2025-11-07 11:51:13.526389 jose,unknown,Crypto.JOSE.Header,HasJku,src/Crypto/JOSE/Header.hs:343:7-12,"class HasJku a where jku :: Lens' (a p) (Maybe (HeaderParam p Types.URI))",343,344,2025-11-07 11:51:13.526395,2025-11-07 11:51:13.526395 jose,unknown,Crypto.JOSE.Header,HasJwk,src/Crypto/JOSE/Header.hs:346:7-12,"class HasJwk a where jwk :: Lens' (a p) (Maybe (HeaderParam p JWK))",346,347,2025-11-07 11:51:13.526400,2025-11-07 11:51:13.526400 jose,unknown,Crypto.JOSE.Header,HasKid,src/Crypto/JOSE/Header.hs:349:7-12,"class HasKid a where kid :: Lens' (a p) (Maybe (HeaderParam p T.Text))",349,350,2025-11-07 11:51:13.526405,2025-11-07 11:51:13.526405 jose,unknown,Crypto.JOSE.Header,HasX5u,src/Crypto/JOSE/Header.hs:352:7-12,"class HasX5u a where x5u :: Lens' (a p) (Maybe (HeaderParam p Types.URI))",352,353,2025-11-07 11:51:13.526410,2025-11-07 11:51:13.526410 jose,unknown,Crypto.JOSE.Header,HasX5c,src/Crypto/JOSE/Header.hs:355:7-12,"class HasX5c a where x5c :: Lens' (a p) (Maybe (HeaderParam p (NonEmpty Types.SignedCertificate)))",355,356,2025-11-07 11:51:13.526416,2025-11-07 11:51:13.526416 jose,unknown,Crypto.JOSE.Header,HasX5t,src/Crypto/JOSE/Header.hs:358:7-12,"class HasX5t a where x5t :: Lens' (a p) (Maybe (HeaderParam p Types.Base64SHA1))",358,359,2025-11-07 11:51:13.526421,2025-11-07 11:51:13.526421 jose,unknown,Crypto.JOSE.Header,HasX5tS256,src/Crypto/JOSE/Header.hs:361:7-16,"class HasX5tS256 a where x5tS256 :: Lens' (a p) (Maybe (HeaderParam p Types.Base64SHA256))",361,362,2025-11-07 11:51:13.526427,2025-11-07 11:51:13.526427 jose,unknown,Crypto.JOSE.Header,HasTyp,src/Crypto/JOSE/Header.hs:364:7-12,"class HasTyp a where typ :: Lens' (a p) (Maybe (HeaderParam p T.Text))",364,365,2025-11-07 11:51:13.526433,2025-11-07 11:51:13.526433 jose,unknown,Crypto.JOSE.Header,HasCty,src/Crypto/JOSE/Header.hs:367:7-12,"class HasCty a where cty :: Lens' (a p) (Maybe (HeaderParam p T.Text))",367,368,2025-11-07 11:51:13.526438,2025-11-07 11:51:13.526438 jose,unknown,Crypto.JOSE.Header,HasCrit,src/Crypto/JOSE/Header.hs:370:7-13,"class HasCrit a where crit :: Lens' (a p) (Maybe (NonEmpty T.Text))",370,371,2025-11-07 11:51:13.526443,2025-11-07 11:51:13.526443 jose,unknown,Crypto.JOSE.Compact,FromCompact,src/Crypto/JOSE/Compact.hs:34:7-17,"class FromCompact a where fromCompact :: (AsError e, MonadError e m) => [L.ByteString] -> m a",34,35,2025-11-07 11:51:13.526449,2025-11-07 11:51:13.526449 jose,unknown,Crypto.JOSE.Compact,ToCompact,src/Crypto/JOSE/Compact.hs:45:7-15,"class ToCompact a where toCompact :: a -> [L.ByteString]",45,46,2025-11-07 11:51:13.526455,2025-11-07 11:51:13.526455 jose,unknown,Crypto.JOSE.JWA.JWK,AsPublicKey,src/Crypto/JOSE/JWA/JWK.hs:646:7-17,"class AsPublicKey k where asPublicKey :: Getter k (Maybe k)",646,648,2025-11-07 11:51:13.526460,2025-11-07 11:51:13.526460 jose,unknown,Crypto.JOSE.JWK.Store,VerificationKeyStore,src/Crypto/JOSE/JWK/Store.hs:86:7-26,"class VerificationKeyStore m h s a where getVerificationKeys :: h "" JWS header"" -> s "" Payload"" -> a -> m [JWK]",86,92,2025-11-07 11:51:13.526490,2025-11-07 11:51:13.526490 jrec,unknown,JRec.Internal,RecCopy,src/JRec/Internal.hs:224:7-13,"class RecCopy (pts :: [*]) (lts :: [*]) (rts :: [*]) where recCopyInto :: Proxy pts -> Rec lts -> Proxy rts -> SmallMutableArray# s Any -> State# s -> State# s",224,231,2025-11-07 11:51:15.192883,2025-11-07 11:51:15.192883 jrec,unknown,JRec.Internal,RecKeys,src/JRec/Internal.hs:516:7-13,"class RecKeys (lts :: [*]) where type RecKeysT lts :: [Symbol] recFields :: t lts -> RecFields (RecKeysT lts)",516,518,2025-11-07 11:51:15.192896,2025-11-07 11:51:15.192896 jrec,unknown,JRec.Internal,EncodeField,src/JRec/Internal.hs:563:19-29,"class ToJSON a => EncodeField a where encodeField :: a -> Maybe Value encodeKV :: T.Text -> a -> Series",563,565,2025-11-07 11:51:15.192903,2025-11-07 11:51:15.192903 jrec,unknown,JRec.Internal,RecApply,src/JRec/Internal.hs:595:7-14,"class RecApply (rts :: [*]) (lts :: [*]) c where recApply :: (forall a. Dict (c a) -> String -> a -> b -> b) -> Rec rts -> Proxy lts -> b -> b",595,596,2025-11-07 11:51:15.192909,2025-11-07 11:51:15.192909 jrec,unknown,JRec.Internal,RecEq,src/JRec/Internal.hs:619:7-11,"class RecEq (rts :: [*]) (lts :: [*]) where recEq :: Rec rts -> Rec rts -> Proxy lts -> Bool",619,620,2025-11-07 11:51:15.192918,2025-11-07 11:51:15.192918 jrec,unknown,JRec.Internal,RecOrd,src/JRec/Internal.hs:643:24-29,"class RecEq rts lts => RecOrd (rts :: [*]) (lts :: [*]) where recOrd :: Rec rts -> Rec rts -> Proxy lts -> Ordering",643,644,2025-11-07 11:51:15.192923,2025-11-07 11:51:15.192923 jrec,unknown,JRec.Internal,RecJsonParse,src/JRec/Internal.hs:673:7-18,"class RecJsonParse (lts :: [*]) where recJsonParse :: JSONOptions -> Int -> Object -> Parser (ForallST (Rec lts))",673,674,2025-11-07 11:51:15.192928,2025-11-07 11:51:15.192928 jrec,unknown,JRec.Internal,ParseField,src/JRec/Internal.hs:679:21-30,"class FromJSON a => ParseField a where parseField :: Object -> T.Text -> Parser a",679,680,2025-11-07 11:51:15.192934,2025-11-07 11:51:15.192934 jrec,unknown,JRec.Internal,RecNfData,src/JRec/Internal.hs:707:7-15,"class RecNfData (lts :: [*]) (rts :: [*]) where recNfData :: Proxy lts -> Rec rts -> ()",707,708,2025-11-07 11:51:15.192942,2025-11-07 11:51:15.192942 jrec,unknown,JRec.Internal,FromNative,src/JRec/Internal.hs:728:7-16,"class FromNative a lts | a -> lts where fromNative' :: a x -> Rec lts",728,729,2025-11-07 11:51:15.192947,2025-11-07 11:51:15.192947 jrec,unknown,JRec.Internal,ToNative,src/JRec/Internal.hs:770:7-14,"class ToNative a lts where toNative' :: Rec lts -> a x",770,771,2025-11-07 11:51:15.192952,2025-11-07 11:51:15.192952 jrec,unknown,JRec.Internal,NoConstraint,src/JRec/Internal.hs:817:7-18,class NoConstraint x,817,817,2025-11-07 11:51:15.192957,2025-11-07 11:51:15.192957 jrec,unknown,JRec.Tuple,RecTuple,src/JRec/Tuple.hs:8:7-14,"class RecTuple tuple fields | tuple -> fields, fields -> tuple where fromTuple :: tuple -> R.Rec fields toTuple :: R.Rec fields -> tuple",8,10,2025-11-07 11:51:15.192962,2025-11-07 11:51:15.192962 json,unknown,Text.JSON,JSON,Text/JSON.hs:103:7-10,"class JSON a where readJSON :: JSValue -> Result a showJSON :: a -> JSValue readJSONs :: JSValue -> Result [a] readJSONs (JSArray as) = mapM readJSON as readJSONs _ = mkError ""Unable to read list"" showJSONs :: [a] -> JSValue showJSONs = JSArray . map showJSON",103,112,2025-11-07 11:51:17.830927,2025-11-07 11:51:17.830927 json,unknown,Text.JSON,JSKey,Text/JSON.hs:447:7-11,"class JSKey a where toJSKey :: a -> String fromJSKey :: String -> Maybe a",447,449,2025-11-07 11:51:17.830945,2025-11-07 11:51:17.830945 keys,unknown,Data.Key,Keyed,src/Data/Key.hs:134:20-24,"class Functor f => Keyed f where mapWithKey :: (Key f -> a -> b) -> f a -> f b",134,135,2025-11-07 11:51:23.307326,2025-11-07 11:51:23.307326 keys,unknown,Data.Key,Zip,src/Data/Key.hs:216:20-22,"class Functor f => Zip f where zipWith :: (a -> b -> c) -> f a -> f b -> f c zipWith f a b = uncurry f <$> zip a b zip :: f a -> f b -> f (a, b) zip = zipWith (,) zap :: f (a -> b) -> f a -> f b zap = zipWith id {-# MINIMAL zipWith | zip #-}",216,228,2025-11-07 11:51:23.307339,2025-11-07 11:51:23.307339 keys,unknown,Data.Key,ZipWithKey,src/Data/Key.hs:278:27-36,"class (Keyed f, Zip f) => ZipWithKey f where zipWithKey :: (Key f -> a -> b -> c) -> f a -> f b -> f c zipWithKey f = zap . mapWithKey f zapWithKey :: f (Key f -> a -> b) -> f a -> f b zapWithKey = zipWithKey (\ k f -> f k)",278,283,2025-11-07 11:51:23.307347,2025-11-07 11:51:23.307347 keys,unknown,Data.Key,Indexable,src/Data/Key.hs:330:19-27,"class Lookup f => Indexable f where index :: f a -> Key f -> a",330,331,2025-11-07 11:51:23.307354,2025-11-07 11:51:23.307354 keys,unknown,Data.Key,Lookup,src/Data/Key.hs:384:7-12,"class Lookup f where lookup :: Key f -> f a -> Maybe a",384,385,2025-11-07 11:51:23.307359,2025-11-07 11:51:23.307359 keys,unknown,Data.Key,Adjustable,src/Data/Key.hs:443:20-29,"class Functor f => Adjustable f where adjust :: (a -> a) -> Key f -> f a -> f a replace :: Key f -> a -> f a -> f a replace k v = adjust (const v) k",443,447,2025-11-07 11:51:23.307363,2025-11-07 11:51:23.307363 keys,unknown,Data.Key,FoldableWithKey,src/Data/Key.hs:523:21-35,"class Foldable t => FoldableWithKey t where toKeyedList :: t a -> [(Key t, a)] toKeyedList = foldrWithKey (\ k v t -> (k, v) : t) [] foldMapWithKey :: Monoid m => (Key t -> a -> m) -> t a -> m foldMapWithKey f = foldrWithKey (\ k v -> mappend (f k v)) mempty foldrWithKey :: (Key t -> a -> b -> b) -> b -> t a -> b foldrWithKey f z t = appEndo (foldMapWithKey (\ k v -> Endo (f k v)) t) z foldlWithKey :: (b -> Key t -> a -> b) -> b -> t a -> b foldlWithKey f z t = appEndo (getDual (foldMapWithKey (\ k a -> Dual (Endo (\ b -> f b k a))) t)) z {-# MINIMAL foldMapWithKey | foldrWithKey #-}",523,537,2025-11-07 11:51:23.307369,2025-11-07 11:51:23.307369 keys,unknown,Data.Key,FoldableWithKey1,src/Data/Key.hs:641:43-58,"class (Foldable1 t, FoldableWithKey t) => FoldableWithKey1 t where foldMapWithKey1 :: Semigroup m => (Key t -> a -> m) -> t a -> m",641,642,2025-11-07 11:51:23.307380,2025-11-07 11:51:23.307380 keys,unknown,Data.Key,TraversableWithKey,src/Data/Key.hs:704:54-71,"class (Keyed t, FoldableWithKey t, Traversable t) => TraversableWithKey t where traverseWithKey :: Applicative f => (Key t -> a -> f b) -> t a -> f (t b) mapWithKeyM :: Monad m => (Key t -> a -> m b) -> t a -> m (t b) mapWithKeyM f = unwrapMonad . traverseWithKey (fmap WrapMonad . f)",704,708,2025-11-07 11:51:23.307386,2025-11-07 11:51:23.307386 keys,unknown,Data.Key,TraversableWithKey1,src/Data/Key.hs:820:69-87,"class (Traversable1 t, FoldableWithKey1 t, TraversableWithKey t) => TraversableWithKey1 t where traverseWithKey1 :: Apply f => (Key t -> a -> f b) -> t a -> f (t b)",820,821,2025-11-07 11:51:23.307393,2025-11-07 11:51:23.307393 language-javascript,unknown,Language.JavaScript.Parser.ParseError,Error,src/Language/JavaScript/Parser/ParseError.hs:34:7-11,"class Error a where noMsg :: a strMsg :: String -> a",34,40,2025-11-07 11:51:25.213061,2025-11-07 11:51:25.213061 language-javascript,unknown,Language.JavaScript.Parser.AST,ShowStripped,src/Language/JavaScript/Parser/AST.hs:371:7-18,"class ShowStripped a where ss :: a -> String",371,372,2025-11-07 11:51:25.213078,2025-11-07 11:51:25.213078 language-javascript,unknown,Language.JavaScript.Pretty.Printer,RenderJS,src/Language/JavaScript/Pretty/Printer.hs:53:7-14,"class RenderJS a where (|>) :: PosAccum -> a -> PosAccum",53,55,2025-11-07 11:51:25.213085,2025-11-07 11:51:25.213085 language-javascript,unknown,Language.JavaScript.Process.Minify,MinifyJS,src/Language/JavaScript/Process/Minify.hs:28:7-14,"class MinifyJS a where fix :: JSAnnot -> a -> a",28,29,2025-11-07 11:51:25.213092,2025-11-07 11:51:25.213092 lazysmallcheck,unknown,Test.LazySmallCheck,Serial,Test/LazySmallCheck.hs:54:7-12,"class Serial a where series :: Series a",54,55,2025-11-07 11:51:26.716891,2025-11-07 11:51:26.716891 lazysmallcheck,unknown,Test.LazySmallCheck,Testable,Test/LazySmallCheck.hs:268:7-14,"class Testable a where property :: ([Term] -> a) -> P",268,269,2025-11-07 11:51:26.716903,2025-11-07 11:51:26.716903 lens,unknown,Language.Haskell.TH.Lens,HasName,src/Language/Haskell/TH/Lens.hs:431:7-13,"class HasName t where name :: Lens' t Name",431,433,2025-11-07 11:51:29.026854,2025-11-07 11:51:29.026854 lens,unknown,Language.Haskell.TH.Lens,HasTypes,src/Language/Haskell/TH/Lens.hs:479:7-14,"class HasTypes t where types :: Traversal' t Type",479,481,2025-11-07 11:51:29.026868,2025-11-07 11:51:29.026868 lens,unknown,Language.Haskell.TH.Lens,HasTypeVars,src/Language/Haskell/TH/Lens.hs:517:7-17,"class HasTypeVars t where typeVarsEx :: Set Name -> Traversal' t Name",517,521,2025-11-07 11:51:29.026874,2025-11-07 11:51:29.026874 lens,unknown,Language.Haskell.TH.Lens,SubstType,src/Language/Haskell/TH/Lens.hs:614:7-15,"class SubstType t where substType :: Map Name Type -> t -> t",614,616,2025-11-07 11:51:29.026880,2025-11-07 11:51:29.026880 lens,unknown,System.Exit.Lens,AsExitCode,src/System/Exit/Lens.hs:35:7-16,"class AsExitCode t where _ExitCode :: Prism' t ExitCode",35,36,2025-11-07 11:51:29.026887,2025-11-07 11:51:29.026887 lifted-async,unknown,Control.Concurrent.Async.Lifted.Safe,Pure,src/Control/Concurrent/Async/Lifted/Safe.hs:419:22-25,class StM m a ~ a => Pure m a,419,419,2025-11-07 11:51:34.693689,2025-11-07 11:51:34.693689 lens,unknown,Data.ByteString.Lens,IsByteString,src/Data/ByteString/Lens.hs:31:7-18,"class IsByteString t where packedBytes :: Iso' [Word8] t packedChars :: Iso' String t bytes :: IndexedTraversal' Int t Word8 bytes = from packedBytes . traversed {-# INLINE bytes #-} chars :: IndexedTraversal' Int t Char chars = from packedChars . traversed {-# INLINE chars #-}",31,91,2025-11-07 11:51:29.026892,2025-11-07 11:51:29.026892 lens,unknown,Data.Dynamic.Lens,AsDynamic,src/Data/Dynamic/Lens.hs:26:7-15,"class AsDynamic t where _Dynamic :: Typeable a => Prism' t a",26,37,2025-11-07 11:51:29.026901,2025-11-07 11:51:29.026901 lens,unknown,Data.Text.Lens,IsText,src/Data/Text/Lens.hs:39:7-12,"class IsText t where packed :: Iso' String t builder :: Iso' t Builder text :: IndexedTraversal' Int t Char text = unpacked . traversed {-# INLINE text #-}",39,63,2025-11-07 11:51:29.026906,2025-11-07 11:51:29.026906 lens,unknown,Control.Lens.Each,Each,src/Control/Lens/Each.hs:82:7-10,"class Each s t a b | s -> a, t -> b, s b -> t, t a -> s where each :: Traversal s t a b default each :: (Traversable g, s ~ g a, t ~ g b) => Traversal s t a b each = traverse {-# INLINE each #-}",82,86,2025-11-07 11:51:29.026913,2025-11-07 11:51:29.026913 lens,unknown,Control.Lens.Zoom,Zoom,src/Control/Lens/Zoom.hs:114:43-46,"class (MonadState s m, MonadState t n) => Zoom m n s t | m -> s, n -> t, m t -> n, n s -> m where zoom :: LensLike' (Zoomed m c) t s -> m c -> n c",114,151,2025-11-07 11:51:29.026920,2025-11-07 11:51:29.026920 lens,unknown,Control.Lens.Zoom,Magnify,src/Control/Lens/Zoom.hs:216:72-78,"class (Magnified m ~ Magnified n, MonadReader b m, MonadReader a n) => Magnify m n b a | m -> b, n -> a, m a -> n, n b -> m where magnify :: ((Functor (Magnified m c), Contravariant (Magnified m c)) => LensLike' (Magnified m c) a b) -> m c -> n c",216,255,2025-11-07 11:51:29.026926,2025-11-07 11:51:29.026926 lens,unknown,Control.Lens.Plated,Plated,src/Control/Lens/Plated.hs:206:7-12,"class Plated a where plate :: Traversal' a a default plate :: Data a => Traversal' a a plate = uniplate",206,214,2025-11-07 11:51:29.026935,2025-11-07 11:51:29.026935 lens,unknown,Control.Lens.Plated,GPlated,src/Control/Lens/Plated.hs:758:7-13,"class GPlated a g where gplate' :: Traversal' (g p) a",758,759,2025-11-07 11:51:29.026941,2025-11-07 11:51:29.026941 lens,unknown,Control.Lens.Plated,GPlated1,src/Control/Lens/Plated.hs:799:7-14,"class GPlated1 f g where gplate1' :: Traversal' (g a) (f a)",799,800,2025-11-07 11:51:29.026945,2025-11-07 11:51:29.026945 lens,unknown,Control.Lens.Prism,Prefixed,src/Control/Lens/Prism.hs:388:7-14,"class Prefixed t where prefixed :: t -> Prism' t t",388,400,2025-11-07 11:51:29.026951,2025-11-07 11:51:29.026951 lens,unknown,Control.Lens.Prism,Suffixed,src/Control/Lens/Prism.hs:422:7-14,"class Suffixed t where suffixed :: t -> Prism' t t",422,434,2025-11-07 11:51:29.026955,2025-11-07 11:51:29.026955 lens,unknown,Control.Lens.Wrapped,Wrapped,src/Control/Lens/Wrapped.hs:174:7-13,"class Wrapped s where type Unwrapped s :: Type type Unwrapped s = GUnwrapped (Rep s) _Wrapped' :: Iso' s (Unwrapped s) default _Wrapped' :: (Generic s, D1 d (C1 c (S1 s' (Rec0 a))) ~ Rep s, Unwrapped s ~ GUnwrapped (Rep s)) => Iso' s (Unwrapped s) _Wrapped' = _GWrapped' {-# INLINE _Wrapped' #-}",174,186,2025-11-07 11:51:29.026960,2025-11-07 11:51:29.026960 lens,unknown,Control.Lens.Wrapped,Rewrapped,src/Control/Lens/Wrapped.hs:209:20-28,class Wrapped s => Rewrapped (s :: Type) (t :: Type),209,209,2025-11-07 11:51:29.026969,2025-11-07 11:51:29.026969 lens,unknown,Control.Lens.Wrapped,Rewrapping,src/Control/Lens/Wrapped.hs:211:44-53,"class (Rewrapped s t, Rewrapped t s) => Rewrapping s t",211,211,2025-11-07 11:51:29.026974,2025-11-07 11:51:29.026974 lens,unknown,Control.Lens.Cons,Cons,src/Control/Lens/Cons.hs:98:7-10,"class Cons s t a b | s -> a, t -> b, s b -> t, t a -> s where _Cons :: Prism s t (a, s) (b, t)",98,109,2025-11-07 11:51:29.026979,2025-11-07 11:51:29.026979 lens,unknown,Control.Lens.Cons,Snoc,src/Control/Lens/Cons.hs:332:7-10,"class Snoc s t a b | s -> a, t -> b, s b -> t, t a -> s where _Snoc :: Prism s t (s, a) (t, b)",332,343,2025-11-07 11:51:29.026984,2025-11-07 11:51:29.026984 lens,unknown,Control.Lens.Traversal,TraverseMin,src/Control/Lens/Traversal.hs:1228:16-26,"class Ord k => TraverseMin k m | m -> k where traverseMin :: IndexedTraversal' k (m v) v",1228,1230,2025-11-07 11:51:29.026990,2025-11-07 11:51:29.026990 lens,unknown,Control.Lens.Traversal,TraverseMax,src/Control/Lens/Traversal.hs:1245:16-26,"class Ord k => TraverseMax k m | m -> k where traverseMax :: IndexedTraversal' k (m v) v",1245,1247,2025-11-07 11:51:29.026996,2025-11-07 11:51:29.026996 lens,unknown,Control.Lens.Empty,AsEmpty,src/Control/Lens/Empty.hs:65:7-13,"class AsEmpty a where _Empty :: Prism' a () default _Empty :: (Monoid a, Eq a) => Prism' a () _Empty = only mempty {-# INLINE _Empty #-}",65,73,2025-11-07 11:51:29.027002,2025-11-07 11:51:29.027002 lens,unknown,Control.Lens.At,Contains,src/Control/Lens/At.hs:141:7-14,"class Contains m where contains :: Index m -> Lens' m Bool",141,151,2025-11-07 11:51:29.027008,2025-11-07 11:51:29.027008 lens,unknown,Control.Lens.At,Ixed,src/Control/Lens/At.hs:210:7-10,"class Ixed m where ix :: Index m -> Traversal' m (IxValue m) default ix :: At m => Index m -> Traversal' m (IxValue m) ix = ixAt {-# INLINE ix #-}",210,231,2025-11-07 11:51:29.027012,2025-11-07 11:51:29.027012 lens,unknown,Control.Lens.At,At,src/Control/Lens/At.hs:451:17-18,"class Ixed m => At m where at :: Index m -> Lens' m (Maybe (IxValue m))",451,461,2025-11-07 11:51:29.027018,2025-11-07 11:51:29.027018 lens,unknown,Control.Lens.Tuple,Field1,src/Control/Lens/Tuple.hs:69:7-12,"class Field1 s t a b | s -> a, t -> b, s b -> t, t a -> s where _1 :: Lens s t a b default _1 :: (Generic s, Generic t, GIxed N0 (Rep s) (Rep t) a b) => Lens s t a b _1 = ix proxyN0 {-# INLINE _1 #-}",69,101,2025-11-07 11:51:29.027023,2025-11-07 11:51:29.027023 lens,unknown,Control.Lens.Tuple,Field2,src/Control/Lens/Tuple.hs:192:7-12,"class Field2 s t a b | s -> a, t -> b, s b -> t, t a -> s where _2 :: Lens s t a b default _2 :: (Generic s, Generic t, GIxed N1 (Rep s) (Rep t) a b) => Lens s t a b _2 = ix proxyN1 {-# INLINE _2 #-}",192,214,2025-11-07 11:51:29.027030,2025-11-07 11:51:29.027030 lens,unknown,Control.Lens.Tuple,Field3,src/Control/Lens/Tuple.hs:303:7-12,"class Field3 s t a b | s -> a, t -> b, s b -> t, t a -> s where _3 :: Lens s t a b default _3 :: (Generic s, Generic t, GIxed N2 (Rep s) (Rep t) a b) => Lens s t a b _3 = ix proxyN2 {-# INLINE _3 #-}",303,309,2025-11-07 11:51:29.027060,2025-11-07 11:51:29.027060 lens,unknown,Control.Lens.Tuple,Field4,src/Control/Lens/Tuple.hs:380:7-12,"class Field4 s t a b | s -> a, t -> b, s b -> t, t a -> s where _4 :: Lens s t a b default _4 :: (Generic s, Generic t, GIxed N3 (Rep s) (Rep t) a b) => Lens s t a b _4 = ix proxyN3 {-# INLINE _4 #-}",380,386,2025-11-07 11:51:29.027153,2025-11-07 11:51:29.027153 lens,unknown,Control.Lens.Tuple,Field5,src/Control/Lens/Tuple.hs:453:7-12,"class Field5 s t a b | s -> a, t -> b, s b -> t, t a -> s where _5 :: Lens s t a b default _5 :: (Generic s, Generic t, GIxed N4 (Rep s) (Rep t) a b) => Lens s t a b _5 = ix proxyN4 {-# INLINE _5 #-}",453,459,2025-11-07 11:51:29.027161,2025-11-07 11:51:29.027161 lens,unknown,Control.Lens.Tuple,Field6,src/Control/Lens/Tuple.hs:522:7-12,"class Field6 s t a b | s -> a, t -> b, s b -> t, t a -> s where _6 :: Lens s t a b default _6 :: (Generic s, Generic t, GIxed N5 (Rep s) (Rep t) a b) => Lens s t a b _6 = ix proxyN5 {-# INLINE _6 #-}",522,528,2025-11-07 11:51:29.027172,2025-11-07 11:51:29.027172 lens,unknown,Control.Lens.Tuple,Field7,src/Control/Lens/Tuple.hs:587:7-12,"class Field7 s t a b | s -> a, t -> b, s b -> t, t a -> s where _7 :: Lens s t a b default _7 :: (Generic s, Generic t, GIxed N6 (Rep s) (Rep t) a b) => Lens s t a b _7 = ix proxyN6 {-# INLINE _7 #-}",587,593,2025-11-07 11:51:29.027179,2025-11-07 11:51:29.027179 lens,unknown,Control.Lens.Tuple,Field8,src/Control/Lens/Tuple.hs:648:7-12,"class Field8 s t a b | s -> a, t -> b, s b -> t, t a -> s where _8 :: Lens s t a b default _8 :: (Generic s, Generic t, GIxed N7 (Rep s) (Rep t) a b) => Lens s t a b _8 = ix proxyN7 {-# INLINE _8 #-}",648,654,2025-11-07 11:51:29.027190,2025-11-07 11:51:29.027190 lens,unknown,Control.Lens.Tuple,Field9,src/Control/Lens/Tuple.hs:705:7-12,"class Field9 s t a b | s -> a, t -> b, s b -> t, t a -> s where _9 :: Lens s t a b default _9 :: (Generic s, Generic t, GIxed N8 (Rep s) (Rep t) a b) => Lens s t a b _9 = ix proxyN8 {-# INLINE _9 #-}",705,711,2025-11-07 11:51:29.027197,2025-11-07 11:51:29.027197 lens,unknown,Control.Lens.Tuple,Field10,src/Control/Lens/Tuple.hs:758:7-13,"class Field10 s t a b | s -> a, t -> b, s b -> t, t a -> s where _10 :: Lens s t a b default _10 :: (Generic s, Generic t, GIxed N9 (Rep s) (Rep t) a b) => Lens s t a b _10 = ix proxyN9 {-# INLINE _10 #-}",758,764,2025-11-07 11:51:29.027204,2025-11-07 11:51:29.027204 lens,unknown,Control.Lens.Tuple,Field11,src/Control/Lens/Tuple.hs:807:7-13,"class Field11 s t a b | s -> a, t -> b, s b -> t, t a -> s where _11 :: Lens s t a b default _11 :: (Generic s, Generic t, GIxed N10 (Rep s) (Rep t) a b) => Lens s t a b _11 = ix proxyN10 {-# INLINE _11 #-}",807,813,2025-11-07 11:51:29.027211,2025-11-07 11:51:29.027211 lens,unknown,Control.Lens.Tuple,Field12,src/Control/Lens/Tuple.hs:852:7-13,"class Field12 s t a b | s -> a, t -> b, s b -> t, t a -> s where _12 :: Lens s t a b default _12 :: (Generic s, Generic t, GIxed N11 (Rep s) (Rep t) a b) => Lens s t a b _12 = ix proxyN11 {-# INLINE _12 #-}",852,858,2025-11-07 11:51:29.027218,2025-11-07 11:51:29.027218 lens,unknown,Control.Lens.Tuple,Field13,src/Control/Lens/Tuple.hs:893:7-13,"class Field13 s t a b | s -> a, t -> b, s b -> t, t a -> s where _13 :: Lens s t a b default _13 :: (Generic s, Generic t, GIxed N12 (Rep s) (Rep t) a b) => Lens s t a b _13 = ix proxyN12 {-# INLINE _13 #-}",893,899,2025-11-07 11:51:29.027225,2025-11-07 11:51:29.027225 lens,unknown,Control.Lens.Tuple,Field14,src/Control/Lens/Tuple.hs:930:7-13,"class Field14 s t a b | s -> a, t -> b, s b -> t, t a -> s where _14 :: Lens s t a b default _14 :: (Generic s, Generic t, GIxed N13 (Rep s) (Rep t) a b) => Lens s t a b _14 = ix proxyN13 {-# INLINE _14 #-}",930,936,2025-11-07 11:51:29.027232,2025-11-07 11:51:29.027232 lens,unknown,Control.Lens.Tuple,Field15,src/Control/Lens/Tuple.hs:963:7-13,"class Field15 s t a b | s -> a, t -> b, s b -> t, t a -> s where _15 :: Lens s t a b default _15 :: (Generic s, Generic t, GIxed N14 (Rep s) (Rep t) a b) => Lens s t a b _15 = ix proxyN14 {-# INLINE _15 #-}",963,969,2025-11-07 11:51:29.027243,2025-11-07 11:51:29.027243 lens,unknown,Control.Lens.Tuple,Field16,src/Control/Lens/Tuple.hs:992:7-13,"class Field16 s t a b | s -> a, t -> b, s b -> t, t a -> s where _16 :: Lens s t a b default _16 :: (Generic s, Generic t, GIxed N15 (Rep s) (Rep t) a b) => Lens s t a b _16 = ix proxyN15 {-# INLINE _16 #-}",992,998,2025-11-07 11:51:29.027250,2025-11-07 11:51:29.027250 lens,unknown,Control.Lens.Tuple,Field17,src/Control/Lens/Tuple.hs:1017:7-13,"class Field17 s t a b | s -> a, t -> b, s b -> t, t a -> s where _17 :: Lens s t a b default _17 :: (Generic s, Generic t, GIxed N16 (Rep s) (Rep t) a b) => Lens s t a b _17 = ix proxyN16 {-# INLINE _17 #-}",1017,1023,2025-11-07 11:51:29.027262,2025-11-07 11:51:29.027262 lens,unknown,Control.Lens.Tuple,Field18,src/Control/Lens/Tuple.hs:1038:7-13,"class Field18 s t a b | s -> a, t -> b, s b -> t, t a -> s where _18 :: Lens s t a b default _18 :: (Generic s, Generic t, GIxed N17 (Rep s) (Rep t) a b) => Lens s t a b _18 = ix proxyN17 {-# INLINE _18 #-}",1038,1044,2025-11-07 11:51:29.027269,2025-11-07 11:51:29.027269 lens,unknown,Control.Lens.Tuple,Field19,src/Control/Lens/Tuple.hs:1055:7-13,"class Field19 s t a b | s -> a, t -> b, s b -> t, t a -> s where _19 :: Lens s t a b default _19 :: (Generic s, Generic t, GIxed N18 (Rep s) (Rep t) a b) => Lens s t a b _19 = ix proxyN18 {-# INLINE _19 #-}",1055,1061,2025-11-07 11:51:29.027280,2025-11-07 11:51:29.027280 lens,unknown,Control.Lens.Tuple,GIxed,src/Control/Lens/Tuple.hs:1175:7-11,"class GIxed n s t a b | n s -> a, n t -> b, n s b -> t, n t a -> s where gix :: f n -> Lens (s x) (t x) a b",1175,1176,2025-11-07 11:51:29.027287,2025-11-07 11:51:29.027287 lens,unknown,Control.Lens.Tuple,GIxed',src/Control/Lens/Tuple.hs:1202:7-12,"class (p ~ GT (GSize s) n, p ~ GT (GSize t) n) => GIxed' p n s s' t t' a b | p n s s' -> a, p n t t' -> b, p n s s' b -> t t', p n t t' a -> s s' where gix' :: f p -> g n -> Lens ((s :*: s') x) ((t :*: t') x) a b",1200,1206,2025-11-07 11:51:29.027297,2025-11-07 11:51:29.027297 lens,unknown,Control.Lens.Internal.Indexed,Conjoined,src/Control/Lens/Internal/Indexed.hs:71:8-16,"class (Choice p, Corepresentable p, Comonad (Corep p), Traversable (Corep p), Strong p, Representable p, Monad (Rep p), MonadFix (Rep p), Distributive (Rep p), Costrong p, ArrowLoop p, ArrowApply p, ArrowChoice p, Closed p) => Conjoined p where distrib :: Functor f => p a b -> p (f a) (f b) distrib = tabulate . collect . sieve {-# INLINE distrib #-} conjoined :: ((p ~ (->)) => q (a -> b) r) -> q (p a b) r -> q (p a b) r conjoined _ r = r {-# INLINE conjoined #-}",67,86,2025-11-07 11:51:29.027316,2025-11-07 11:51:29.027316 lens,unknown,Control.Lens.Internal.Indexed,Indexable,src/Control/Lens/Internal/Indexed.hs:100:22-30,"class Conjoined p => Indexable i p where indexed :: p a b -> i -> a -> b",100,102,2025-11-07 11:51:29.027346,2025-11-07 11:51:29.027346 lens,unknown,Control.Lens.Internal.Context,IndexedFunctor,src/Control/Lens/Internal/Context.hs:49:7-20,"class IndexedFunctor w where ifmap :: (s -> t) -> w a b s -> w a b t",49,50,2025-11-07 11:51:29.027353,2025-11-07 11:51:29.027353 lens,unknown,Control.Lens.Internal.Context,IndexedComonad,src/Control/Lens/Internal/Context.hs:64:27-40,"class IndexedFunctor w => IndexedComonad w where {-# MINIMAL iextract, (iduplicate | iextend) #-} iextract :: w a a t -> t iduplicate :: w a c t -> w a b (w b c t) iduplicate = iextend id {-# INLINE iduplicate #-} iextend :: (w b c t -> r) -> w a c t -> w a b r iextend f = ifmap f . iduplicate {-# INLINE iextend #-}",64,78,2025-11-07 11:51:29.027359,2025-11-07 11:51:29.027359 lens,unknown,Control.Lens.Internal.Context,IndexedComonadStore,src/Control/Lens/Internal/Context.hs:86:27-45,"class IndexedComonad w => IndexedComonadStore w where ipos :: w a c t -> a ipeek :: c -> w a c t -> t ipeek c = iextract . iseek c {-# INLINE ipeek #-} ipeeks :: (a -> c) -> w a c t -> t ipeeks f = iextract . iseeks f {-# INLINE ipeeks #-} iseek :: b -> w a c t -> w b c t iseeks :: (a -> b) -> w a c t -> w b c t iexperiment :: Functor f => (b -> f c) -> w b c t -> f t iexperiment bfc wbct = (`ipeek` wbct) <$> bfc (ipos wbct) {-# INLINE iexperiment #-} context :: w a b t -> Context a b t context wabt = Context (`ipeek` wabt) (ipos wabt) {-# INLINE context #-}",86,115,2025-11-07 11:51:29.027369,2025-11-07 11:51:29.027369 lens,unknown,Control.Lens.Internal.Context,Sellable,src/Control/Lens/Internal/Context.hs:123:28-35,"class Corepresentable p => Sellable p w | w -> p where sell :: p a (w a b b)",123,124,2025-11-07 11:51:29.027382,2025-11-07 11:51:29.027382 lens,unknown,Control.Lens.Internal.Bazaar,Bizarre,src/Control/Lens/Internal/Bazaar.hs:47:23-29,"class Profunctor p => Bizarre p w | w -> p where bazaar :: Applicative f => p a (f b) -> w a b t -> f t",47,48,2025-11-07 11:51:29.027389,2025-11-07 11:51:29.027389 lens,unknown,Control.Lens.Internal.Bazaar,Bizarre1,src/Control/Lens/Internal/Bazaar.hs:239:23-30,"class Profunctor p => Bizarre1 p w | w -> p where bazaar1 :: Apply f => p a (f b) -> w a b t -> f t",239,240,2025-11-07 11:51:29.027395,2025-11-07 11:51:29.027395 lens,unknown,Control.Lens.Internal.Setter,Settable,src/Control/Lens/Internal/Setter.hs:32:57-64,"class (Applicative f, Distributive f, Traversable f) => Settable f where untainted :: f a -> a untaintedDot :: Profunctor p => p a (f b) -> p a b untaintedDot g = g `seq` rmap untainted g {-# INLINE untaintedDot #-} taintedDot :: Profunctor p => p a b -> p a (f b) taintedDot g = g `seq` rmap pure g {-# INLINE taintedDot #-}",32,41,2025-11-07 11:51:29.027401,2025-11-07 11:51:29.027401 lens,unknown,Control.Lens.Internal.Review,Reviewable,src/Control/Lens/Internal/Review.hs:30:38-47,"class (Profunctor p, Bifunctor p) => Reviewable p",30,30,2025-11-07 11:51:29.027414,2025-11-07 11:51:29.027414 lens,unknown,Control.Lens.Internal.Iso,Reversing,src/Control/Lens/Internal/Iso.hs:68:7-15,"class Reversing t where reversing :: t -> t",68,69,2025-11-07 11:51:29.027420,2025-11-07 11:51:29.027420 lens,unknown,Control.Lens.Internal.Exception,Handleable,src/Control/Lens/Internal/Exception.hs:48:7-16,"class Handleable e (m :: Type -> Type) (h :: Type -> Type) | h -> e m where handler :: Typeable a => Getting (First a) e a -> (a -> m r) -> h r handler_ :: Typeable a => Getting (First a) e a -> m r -> h r handler_ l = handler l . const {-# INLINE handler_ #-}",48,128,2025-11-07 11:51:29.027425,2025-11-07 11:51:29.027425 lens,unknown,Control.Exception.Lens,AsIOException,src/Control/Exception/Lens.hs:428:7-19,"class AsIOException t where _IOException :: Prism' t IOException",428,439,2025-11-07 11:51:29.027434,2025-11-07 11:51:29.027434 lens,unknown,Control.Exception.Lens,AsArithException,src/Control/Exception/Lens.hs:458:7-22,"class AsArithException t where _ArithException :: Prism' t ArithException",458,464,2025-11-07 11:51:29.027439,2025-11-07 11:51:29.027439 lens,unknown,Control.Exception.Lens,AsArrayException,src/Control/Exception/Lens.hs:603:7-22,"class AsArrayException t where _ArrayException :: Prism' t ArrayException",603,610,2025-11-07 11:51:29.027445,2025-11-07 11:51:29.027445 lens,unknown,Control.Exception.Lens,AsAssertionFailed,src/Control/Exception/Lens.hs:669:7-23,"class AsAssertionFailed t where __AssertionFailed :: Prism' t AssertionFailed _AssertionFailed :: Prism' t String _AssertionFailed = __AssertionFailed . _AssertionFailed {-# INLINE _AssertionFailed #-}",669,688,2025-11-07 11:51:29.027450,2025-11-07 11:51:29.027450 lens,unknown,Control.Exception.Lens,AsAsyncException,src/Control/Exception/Lens.hs:714:7-22,"class AsAsyncException t where _AsyncException :: Prism' t AsyncException",714,721,2025-11-07 11:51:29.027460,2025-11-07 11:51:29.027460 lens,unknown,Control.Exception.Lens,AsNonTermination,src/Control/Exception/Lens.hs:819:7-22,"class AsNonTermination t where __NonTermination :: Prism' t NonTermination _NonTermination :: Prism' t () _NonTermination = __NonTermination . _NonTermination {-# INLINE _NonTermination #-}",819,835,2025-11-07 11:51:29.027466,2025-11-07 11:51:29.027466 lens,unknown,Control.Exception.Lens,AsNestedAtomically,src/Control/Exception/Lens.hs:862:7-24,"class AsNestedAtomically t where __NestedAtomically :: Prism' t NestedAtomically _NestedAtomically :: Prism' t () _NestedAtomically = __NestedAtomically . _NestedAtomically {-# INLINE _NestedAtomically #-}",862,878,2025-11-07 11:51:29.027472,2025-11-07 11:51:29.027472 lens,unknown,Control.Exception.Lens,AsBlockedIndefinitelyOnMVar,src/Control/Exception/Lens.hs:906:7-33,"class AsBlockedIndefinitelyOnMVar t where __BlockedIndefinitelyOnMVar :: Prism' t BlockedIndefinitelyOnMVar _BlockedIndefinitelyOnMVar :: Prism' t () _BlockedIndefinitelyOnMVar = __BlockedIndefinitelyOnMVar . _BlockedIndefinitelyOnMVar {-# INLINE _BlockedIndefinitelyOnMVar #-}",906,922,2025-11-07 11:51:29.027479,2025-11-07 11:51:29.027479 lens,unknown,Control.Exception.Lens,AsBlockedIndefinitelyOnSTM,src/Control/Exception/Lens.hs:950:7-32,"class AsBlockedIndefinitelyOnSTM t where __BlockedIndefinitelyOnSTM :: Prism' t BlockedIndefinitelyOnSTM _BlockedIndefinitelyOnSTM :: Prism' t () _BlockedIndefinitelyOnSTM = __BlockedIndefinitelyOnSTM . _BlockedIndefinitelyOnSTM {-# INLINE _BlockedIndefinitelyOnSTM #-}",950,966,2025-11-07 11:51:29.027492,2025-11-07 11:51:29.027492 lens,unknown,Control.Exception.Lens,AsDeadlock,src/Control/Exception/Lens.hs:993:7-16,"class AsDeadlock t where __Deadlock :: Prism' t Deadlock _Deadlock :: Prism' t () _Deadlock = __Deadlock . _Deadlock {-# INLINE _Deadlock #-}",993,1009,2025-11-07 11:51:29.027500,2025-11-07 11:51:29.027500 lens,unknown,Control.Exception.Lens,AsNoMethodError,src/Control/Exception/Lens.hs:1036:7-21,"class AsNoMethodError t where __NoMethodError :: Prism' t NoMethodError _NoMethodError :: Prism' t String _NoMethodError = __NoMethodError . _NoMethodError {-# INLINE _NoMethodError #-}",1036,1052,2025-11-07 11:51:29.027506,2025-11-07 11:51:29.027506 lens,unknown,Control.Exception.Lens,AsPatternMatchFail,src/Control/Exception/Lens.hs:1078:7-24,"class AsPatternMatchFail t where __PatternMatchFail :: Prism' t PatternMatchFail _PatternMatchFail :: Prism' t String _PatternMatchFail = __PatternMatchFail . _PatternMatchFail {-# INLINE _PatternMatchFail #-}",1078,1094,2025-11-07 11:51:29.027517,2025-11-07 11:51:29.027517 lens,unknown,Control.Exception.Lens,AsRecConError,src/Control/Exception/Lens.hs:1120:7-19,"class AsRecConError t where __RecConError :: Prism' t RecConError _RecConError :: Prism' t String _RecConError = __RecConError . _RecConError {-# INLINE _RecConError #-}",1120,1137,2025-11-07 11:51:29.027524,2025-11-07 11:51:29.027524 lens,unknown,Control.Exception.Lens,AsRecSelError,src/Control/Exception/Lens.hs:1165:7-19,"class AsRecSelError t where __RecSelError :: Prism' t RecSelError _RecSelError :: Prism' t String _RecSelError = __RecSelError . _RecSelError {-# INLINE _RecSelError #-}",1165,1181,2025-11-07 11:51:29.027548,2025-11-07 11:51:29.027548 lens,unknown,Control.Exception.Lens,AsRecUpdError,src/Control/Exception/Lens.hs:1209:7-19,"class AsRecUpdError t where __RecUpdError :: Prism' t RecUpdError _RecUpdError :: Prism' t String _RecUpdError = __RecUpdError . _RecUpdError {-# INLINE _RecUpdError #-}",1209,1225,2025-11-07 11:51:29.027555,2025-11-07 11:51:29.027555 lens,unknown,Control.Exception.Lens,AsErrorCall,src/Control/Exception/Lens.hs:1251:7-17,"class AsErrorCall t where __ErrorCall :: Prism' t ErrorCall _ErrorCall :: Prism' t String _ErrorCall = __ErrorCall . _ErrorCall {-# INLINE _ErrorCall #-}",1251,1272,2025-11-07 11:51:29.027562,2025-11-07 11:51:29.027562 lens,unknown,Control.Exception.Lens,AsAllocationLimitExceeded,src/Control/Exception/Lens.hs:1298:7-31,"class AsAllocationLimitExceeded t where __AllocationLimitExceeded :: Prism' t AllocationLimitExceeded _AllocationLimitExceeded :: Prism' t () _AllocationLimitExceeded = __AllocationLimitExceeded . _AllocationLimitExceeded {-# INLINE _AllocationLimitExceeded #-}",1298,1315,2025-11-07 11:51:29.027569,2025-11-07 11:51:29.027569 lens,unknown,Control.Exception.Lens,AsTypeError,src/Control/Exception/Lens.hs:1342:7-17,"class AsTypeError t where __TypeError :: Prism' t TypeError _TypeError :: Prism' t String _TypeError = __TypeError . _TypeError {-# INLINE _TypeError #-}",1342,1358,2025-11-07 11:51:29.027580,2025-11-07 11:51:29.027580 lens,unknown,Control.Exception.Lens,AsCompactionFailed,src/Control/Exception/Lens.hs:1386:7-24,"class AsCompactionFailed t where __CompactionFailed :: Prism' t CompactionFailed _CompactionFailed :: Prism' t String _CompactionFailed = __CompactionFailed . _CompactionFailed {-# INLINE _CompactionFailed #-}",1386,1402,2025-11-07 11:51:29.027586,2025-11-07 11:51:29.027586 lens,unknown,Control.Exception.Lens,AsHandlingException,src/Control/Exception/Lens.hs:1430:7-25,"class AsHandlingException t where __HandlingException :: Prism' t HandlingException _HandlingException :: Prism' t () _HandlingException = __HandlingException . _HandlingException {-# INLINE _HandlingException #-}",1430,1446,2025-11-07 11:51:29.027593,2025-11-07 11:51:29.027593 lens-aeson,unknown,Data.Aeson.Lens,AsNumber,src/Data/Aeson/Lens.hs:84:7-14,"class AsNumber t where _Number :: Prism' t Scientific default _Number :: AsValue t => Prism' t Scientific _Number = _Value . _Number {-# INLINE _Number #-} _Double :: Prism' t Double _Double = _Number . iso Scientific.toRealFloat realToFrac {-# INLINE _Double #-} _Integer :: Prism' t Integer _Integer = _Number . iso floor fromIntegral {-# INLINE _Integer #-}",84,118,2025-11-07 11:51:30.734898,2025-11-07 11:51:30.734898 lens-aeson,unknown,Data.Aeson.Lens,AsValue,src/Data/Aeson/Lens.hs:171:21-27,"class AsNumber t => AsValue t where _Value :: Prism' t Value _String :: Prism' t Text _String = _Value . prism String (\ v -> case v of String s -> Right s _ -> Left v) {-# INLINE _String #-} _Bool :: Prism' t Bool _Bool = _Value . prism Bool (\ v -> case v of Bool b -> Right b _ -> Left v) {-# INLINE _Bool #-} _Null :: Prism' t () _Null = _Value . prism (const Null) (\ v -> case v of Null -> Right () _ -> Left v) {-# INLINE _Null #-} _Object :: Prism' t (KeyMap Value) _Object = _Value . prism Object (\ v -> case v of Object o -> Right o _ -> Left v) {-# INLINE _Object #-} _Array :: Prism' t (Vector Value) _Array = _Value . prism Array (\ v -> case v of Array a -> Right a _ -> Left v) {-# INLINE _Array #-}",171,237,2025-11-07 11:51:30.734916,2025-11-07 11:51:30.734916 lens-aeson,unknown,Data.Aeson.Lens,IsKey,src/Data/Aeson/Lens.hs:338:7-11,"class IsKey t where _Key :: Iso' t Key",338,350,2025-11-07 11:51:30.734935,2025-11-07 11:51:30.734935 lens-aeson,unknown,Data.Aeson.Lens,AsJSON,src/Data/Aeson/Lens.hs:400:7-12,"class AsJSON t where _JSON :: (FromJSON a, ToJSON b) => Prism t t a b",400,402,2025-11-07 11:51:30.734940,2025-11-07 11:51:30.734940 linear,unknown,Unsafe.Linear,ToLinearN,src/Unsafe/Linear.hs:127:7-15,"class ToLinearN n f g where unsafeLinearityProofN :: UnsafeEquality f g",127,149,2025-11-07 11:51:37.924685,2025-11-07 11:51:37.924685 linear,unknown,Unsafe.Linear,ToLinearN',src/Unsafe/Linear.hs:168:7-16,"class ToLinearN' arrs f g where prf :: UnsafeEquality f g",168,169,2025-11-07 11:51:37.924703,2025-11-07 11:51:37.924703 linear,unknown,Prelude.Linear.Unsatisfiable,Bottom,src/Prelude/Linear/Unsatisfiable.hs:30:14-19,"class Any => Bottom where unsatisfiable' :: Void",30,31,2025-11-07 11:51:37.924710,2025-11-07 11:51:37.924710 linear,unknown,Prelude.Linear.Unsatisfiable,Unsatisfiable,src/Prelude/Linear/Unsatisfiable.hs:44:32-44,"class (Bottom, TypeError e) => Unsatisfiable (e :: ErrorMessage)",44,44,2025-11-07 11:51:37.924716,2025-11-07 11:51:37.924716 linear,unknown,Data.Arity.Linear.Internal,IsFunN,src/Data/Arity/Linear/Internal.hs:92:7-12,class IsFunN a b f,92,92,2025-11-07 11:51:37.924722,2025-11-07 11:51:37.924722 linear,unknown,Data.Functor.Linear.Internal.Functor,Functor,src/Data/Functor/Linear/Internal/Functor.hs:47:7-13,"class Functor f where fmap :: (a %1 -> b) -> f a %1 -> f b",47,48,2025-11-07 11:51:37.924727,2025-11-07 11:51:37.924727 linear,unknown,Data.Functor.Linear.Internal.Traversable,Traversable,src/Data/Functor/Linear/Internal/Traversable.hs:68:25-35,"class Data.Functor t => Traversable t where {-# MINIMAL traverse | sequence #-} traverse :: Control.Applicative f => (a %1 -> f b) -> t a %1 -> f (t b) {-# INLINE traverse #-} traverse f x = sequence (Data.fmap f x) sequence :: Control.Applicative f => t (f a) %1 -> f (t a) {-# INLINE sequence #-} sequence = traverse id",68,77,2025-11-07 11:51:37.924733,2025-11-07 11:51:37.924733 linear,unknown,Data.Functor.Linear.Internal.Traversable,GTraversable,src/Data/Functor/Linear/Internal/Traversable.hs:199:7-18,"class GTraversable t where gtraverse :: Control.Applicative f => (a %1 -> f b) -> t a %1 -> Curried (Yoneda f) (Yoneda f) (t b)",199,205,2025-11-07 11:51:37.924741,2025-11-07 11:51:37.924741 linear,unknown,Data.Functor.Linear.Internal.Applicative,Applicative,src/Data/Functor/Linear/Internal/Applicative.hs:71:20-30,"class Functor f => Applicative f where {-# MINIMAL pure, (liftA2 | (<*>)) #-} pure :: a -> f a (<*>) :: f (a %1 -> b) %1 -> f a %1 -> f b infixl 4 <*> f <*> x = liftA2 ($) f x liftA2 :: (a %1 -> b %1 -> c) -> f a %1 -> f b %1 -> f c liftA2 f x y = f <$> x <*> y",71,78,2025-11-07 11:51:37.924748,2025-11-07 11:51:37.924748 linear,unknown,Data.Functor.Linear.Internal.Applicative,GApplicative,src/Data/Functor/Linear/Internal/Applicative.hs:165:7-18,"class GApplicative (s :: ErrorMessage) f where gpure :: a -> f a gliftA2 :: (a %1 -> b %1 -> c) -> f a %1 -> f b %1 -> f c",165,167,2025-11-07 11:51:37.924756,2025-11-07 11:51:37.924756 linear,unknown,Data.Bifunctor.Linear.Internal.Bifunctor,Bifunctor,src/Data/Bifunctor/Linear/Internal/Bifunctor.hs:28:7-15,"class Bifunctor p where {-# MINIMAL bimap | (first, second) #-} bimap :: (a %1 -> b) -> (c %1 -> d) -> a `p` c %1 -> b `p` d bimap f g x = first f (second g x) {-# INLINE bimap #-} first :: (a %1 -> b) -> a `p` c %1 -> b `p` c first f = bimap f id {-# INLINE first #-} second :: (b %1 -> c) -> a `p` b %1 -> a `p` c second = bimap id {-# INLINE second #-}",28,40,2025-11-07 11:51:37.924762,2025-11-07 11:51:37.924762 linear,unknown,Data.Bifunctor.Linear.Internal.SymmetricMonoidal,SymmetricMonoidal,src/Data/Bifunctor/Linear/Internal/SymmetricMonoidal.hs:35:3-19,"class Bifunctor m => SymmetricMonoidal (m :: Type -> Type -> Type) (u :: Type) | m -> u, u -> m where {-# MINIMAL swap, (rassoc | lassoc) #-} rassoc :: (a `m` b) `m` c %1 -> a `m` (b `m` c) rassoc = swap . lassoc . swap . lassoc . swap lassoc :: a `m` (b `m` c) %1 -> (a `m` b) `m` c lassoc = swap . rassoc . swap . rassoc . swap swap :: a `m` b %1 -> b `m` a",33,44,2025-11-07 11:51:37.924772,2025-11-07 11:51:37.924772 linear,unknown,Data.Monoid.Linear.Internal.Semigroup,Semigroup,src/Data/Monoid/Linear/Internal/Semigroup.hs:63:7-15,"class Semigroup a where (<>) :: a %1 -> a %1 -> a infixr 6 <>",63,65,2025-11-07 11:51:37.924781,2025-11-07 11:51:37.924781 memory,unknown,Data.Memory.Endian,ByteSwap,Data/Memory/Endian.hs:114:21-28,"class Storable a => ByteSwap a where byteSwap :: a -> a",114,115,2025-11-07 11:51:51.081609,2025-11-07 11:51:51.081609 linear,unknown,Data.Monoid.Linear.Internal.Monoid,Monoid,src/Data/Monoid/Linear/Internal/Monoid.hs:43:22-27,"class Semigroup a => Monoid a where {-# MINIMAL mempty #-} mempty :: a",43,45,2025-11-07 11:51:37.924787,2025-11-07 11:51:37.924787 linear,unknown,Data.Unrestricted.Linear.Internal.Consumable,Consumable,src/Data/Unrestricted/Linear/Internal/Consumable.hs:44:7-16,"class Consumable a where consume :: a %1 -> ()",44,45,2025-11-07 11:51:37.924793,2025-11-07 11:51:37.924793 linear,unknown,Data.Unrestricted.Linear.Internal.Consumable,GConsumable,src/Data/Unrestricted/Linear/Internal/Consumable.hs:215:7-17,"class GConsumable f where gconsume :: f p %1 -> ()",215,216,2025-11-07 11:51:37.924798,2025-11-07 11:51:37.924798 linear,unknown,Data.Unrestricted.Linear.Internal.Dupable,Dupable,src/Data/Unrestricted/Linear/Internal/Dupable.hs:70:23-29,"class Consumable a => Dupable a where {-# MINIMAL dupR | dup2 #-} dupR :: a %1 -> Replicator a dupR x = Streamed $ ReplicationStream x id dup2 consume dup2 :: a %1 -> (a, a) dup2 x = Replicator.elim (,) (dupR x)",70,87,2025-11-07 11:51:37.924804,2025-11-07 11:51:37.924804 linear,unknown,Data.Unrestricted.Linear.Internal.Dupable,GDupable,src/Data/Unrestricted/Linear/Internal/Dupable.hs:237:24-31,"class GConsumable f => GDupable f where gdupR :: f a %1 -> Replicator (f a)",237,238,2025-11-07 11:51:37.924811,2025-11-07 11:51:37.924811 linear,unknown,Data.Unrestricted.Linear.Internal.Movable,Movable,src/Data/Unrestricted/Linear/Internal/Movable.hs:56:20-26,"class Dupable a => Movable a where move :: a %1 -> Ur a",56,57,2025-11-07 11:51:37.924818,2025-11-07 11:51:37.924818 linear,unknown,Data.Unrestricted.Linear.Internal.Movable,GMovable,src/Data/Unrestricted/Linear/Internal/Movable.hs:165:21-28,"class GDupable f => GMovable f where gmove :: f p %1 -> Ur (f p)",165,166,2025-11-07 11:51:37.924823,2025-11-07 11:51:37.924823 linear,unknown,Data.Num.Linear,Additive,src/Data/Num/Linear.hs:55:7-14,"class Additive a where (+) :: a %1 -> a %1 -> a infixl 6 +",55,57,2025-11-07 11:51:37.924829,2025-11-07 11:51:37.924829 linear,unknown,Data.Num.Linear,AddIdentity,src/Data/Num/Linear.hs:60:21-31,"class Additive a => AddIdentity a where zero :: a",60,61,2025-11-07 11:51:37.924834,2025-11-07 11:51:37.924834 linear,unknown,Data.Num.Linear,AdditiveGroup,src/Data/Num/Linear.hs:65:24-36,"class AddIdentity a => AdditiveGroup a where {-# MINIMAL negate | (-) #-} negate :: a %1 -> a negate x = zero - x (-) :: a %1 -> a %1 -> a infixl 6 - x - y = x + negate y",65,71,2025-11-07 11:51:37.924839,2025-11-07 11:51:37.924839 linear,unknown,Data.Num.Linear,Multiplicative,src/Data/Num/Linear.hs:74:7-20,"class Multiplicative a where (*) :: a %1 -> a %1 -> a infixl 7 *",74,76,2025-11-07 11:51:37.924845,2025-11-07 11:51:37.924845 linear,unknown,Data.Num.Linear,MultIdentity,src/Data/Num/Linear.hs:79:27-38,"class Multiplicative a => MultIdentity a where one :: a",79,80,2025-11-07 11:51:37.924850,2025-11-07 11:51:37.924850 linear,unknown,Data.Num.Linear,Semiring,src/Data/Num/Linear.hs:88:42-49,"class (AddIdentity a, MultIdentity a) => Semiring a",88,88,2025-11-07 11:51:37.924855,2025-11-07 11:51:37.924855 linear,unknown,Data.Num.Linear,Ring,src/Data/Num/Linear.hs:96:40-43,"class (AdditiveGroup a, Semiring a) => Ring a",96,96,2025-11-07 11:51:37.924860,2025-11-07 11:51:37.924860 linear,unknown,Data.Num.Linear,FromInteger,src/Data/Num/Linear.hs:105:7-17,"class FromInteger a where fromInteger :: Prelude.Integer %1 -> a",105,106,2025-11-07 11:51:37.924864,2025-11-07 11:51:37.924864 linear,unknown,Data.Num.Linear,Num,src/Data/Num/Linear.hs:109:34-36,"class (Ring a, FromInteger a) => Num a where {-# MINIMAL abs, signum #-} abs :: a %1 -> a signum :: a %1 -> a",109,114,2025-11-07 11:51:37.924869,2025-11-07 11:51:37.924869 linear,unknown,Data.Replicator.Linear.Internal,Elim,src/Data/Replicator/Linear/Internal.hs:165:7-10,"class Elim n a b where elim' :: FunN n a b %1 -> Replicator a %1 -> b",165,169,2025-11-07 11:51:37.924924,2025-11-07 11:51:37.924924 linear,unknown,Data.Profunctor.Linear,Profunctor,src/Data/Profunctor/Linear.hs:62:7-16,"class Profunctor (arr :: Type -> Type -> Type) where {-# MINIMAL dimap | lmap, rmap #-} dimap :: (s %1 -> a) -> (b %1 -> t) -> a `arr` b -> s `arr` t dimap f g x = lmap f (rmap g x) {-# INLINE dimap #-} lmap :: (s %1 -> a) -> a `arr` t -> s `arr` t lmap f = dimap f id {-# INLINE lmap #-} rmap :: (b %1 -> t) -> s `arr` b -> s `arr` t rmap = dimap id {-# INLINE rmap #-}",62,75,2025-11-07 11:51:37.924930,2025-11-07 11:51:37.924930 linear,unknown,Data.Profunctor.Linear,Monoidal,src/Data/Profunctor/Linear.hs:81:50-57,"class (SymmetricMonoidal m u, Profunctor arr) => Monoidal m u arr where (***) :: a `arr` b -> x `arr` y -> (a `m` x) `arr` (b `m` y) infixr 3 *** unit :: u `arr` u",81,84,2025-11-07 11:51:37.924939,2025-11-07 11:51:37.924939 linear,unknown,Data.Profunctor.Linear,Strong,src/Data/Profunctor/Linear.hs:102:50-55,"class (SymmetricMonoidal m u, Profunctor arr) => Strong m u arr where {-# MINIMAL first | second #-} first :: a `arr` b -> (a `m` c) `arr` (b `m` c) first arr = dimap swap swap (second arr) {-# INLINE first #-} second :: b `arr` c -> (a `m` b) `arr` (a `m` c) second arr = dimap swap swap (first arr) {-# INLINE second #-}",102,111,2025-11-07 11:51:37.924945,2025-11-07 11:51:37.924945 linear,unknown,Data.Profunctor.Linear,Wandering,src/Data/Profunctor/Linear.hs:130:54-62,"class (Strong (,) () arr, Strong Either Void arr) => Wandering arr where wander :: forall s t a b. (forall f. Control.Applicative f => (a %1 -> f b) -> s %1 -> f t) -> a `arr` b -> s `arr` t",130,134,2025-11-07 11:51:37.924953,2025-11-07 11:51:37.924953 linear,unknown,Data.Ord.Linear.Internal.Ord,Ord,src/Data/Ord/Linear/Internal/Ord.hs:44:15-17,"class Eq a => Ord a where {-# MINIMAL compare #-} compare :: a %1 -> a %1 -> Ordering infix 4 `compare` (<=) :: a %1 -> a %1 -> Bool x <= y = not (x > y) infix 4 <= (<) :: a %1 -> a %1 -> Bool x < y = compare x y == LT infix 4 < (>) :: a %1 -> a %1 -> Bool x > y = compare x y == GT infix 4 > (>=) :: a %1 -> a %1 -> Bool x >= y = not (x < y) infix 4 >=",44,70,2025-11-07 11:51:37.924961,2025-11-07 11:51:37.924961 linear,unknown,Data.Ord.Linear.Internal.Eq,Eq,src/Data/Ord/Linear/Internal/Eq.hs:30:7-8,"class Eq a where {-# MINIMAL (==) | (/=) #-} (==) :: a %1 -> a %1 -> Bool x == y = not (x /= y) infix 4 == (/=) :: a %1 -> a %1 -> Bool x /= y = not (x == y) infix 4 /=",30,37,2025-11-07 11:51:37.924969,2025-11-07 11:51:37.924969 linear,unknown,Data.V.Linear.Internal,Elim,src/Data/V/Linear/Internal.hs:140:7-10,"class Elim n a b where elim' :: FunN n a b %1 -> V (PeanoToNat n) a %1 -> b",140,144,2025-11-07 11:51:37.924976,2025-11-07 11:51:37.924976 linear,unknown,Data.V.Linear.Internal,Make,src/Data/V/Linear/Internal.hs:204:7-10,"class Make m n a where make' :: (V (PeanoToNat m) a %1 -> V (PeanoToNat n) a) %1 -> FunN m a (V (PeanoToNat n) a)",204,222,2025-11-07 11:51:37.924981,2025-11-07 11:51:37.924981 linear,unknown,Foreign.Marshal.Pure.Internal,KnownRepresentable,src/Foreign/Marshal/Pure/Internal.hs:49:7-24,"class KnownRepresentable a where storable :: Dict (Storable a) default storable :: Storable a => Dict (Storable a) storable = Dict",49,52,2025-11-07 11:51:37.924987,2025-11-07 11:51:37.924987 linear,unknown,Foreign.Marshal.Pure.Internal,Representable,src/Foreign/Marshal/Pure/Internal.hs:141:43-55,"class (KnownRepresentable (AsKnown a)) => Representable a where type AsKnown a :: Type toKnown :: a %1 -> AsKnown a ofKnown :: AsKnown a %1 -> a default toKnown :: (MkRepresentable a b, AsKnown a ~ AsKnown b) => a %1 -> AsKnown a default ofKnown :: (MkRepresentable a b, AsKnown a ~ AsKnown b) => AsKnown a %1 -> a toKnown a = toKnown (toRepr a) ofKnown b = ofRepr (ofKnown b)",141,153,2025-11-07 11:51:37.924993,2025-11-07 11:51:37.924993 linear,unknown,Generics.Deriving.Functor,GFunctor',tests/Generics/Deriving/Functor.hs:77:7-15,"class GFunctor' f where gmap' :: (a -> b) -> f a -> f b",77,78,2025-11-07 11:51:39.902753,2025-11-07 11:51:39.902753 linear,unknown,Foreign.Marshal.Pure.Internal,MkRepresentable,src/Foreign/Marshal/Pure/Internal.hs:218:26-40,"class Representable b => MkRepresentable a b | a -> b where toRepr :: a %1 -> b ofRepr :: b %1 -> a",218,220,2025-11-07 11:51:37.925002,2025-11-07 11:51:37.925002 linear,unknown,Control.Functor.Linear.Internal.Class,Functor,src/Control/Functor/Linear/Internal/Class.hs:80:25-31,"class Data.Functor f => Functor f where fmap :: (a %1 -> b) %1 -> f a %1 -> f b",80,83,2025-11-07 11:51:37.925008,2025-11-07 11:51:37.925008 linear,unknown,Control.Functor.Linear.Internal.Class,Applicative,src/Control/Functor/Linear/Internal/Class.hs:120:42-52,"class (Data.Applicative f, Functor f) => Applicative f where {-# MINIMAL pure, ((<*>) | liftA2) #-} pure :: a %1 -> f a (<*>) :: f (a %1 -> b) %1 -> f a %1 -> f b (<*>) = liftA2 id infixl 4 <*> liftA2 :: (a %1 -> b %1 -> c) %1 -> f a %1 -> f b %1 -> f c liftA2 f x y = f <$> x <*> y",120,139,2025-11-07 11:51:37.925013,2025-11-07 11:51:37.925013 linear,unknown,Control.Functor.Linear.Internal.Class,Monad,src/Control/Functor/Linear/Internal/Class.hs:175:24-28,"class Applicative m => Monad m where {-# MINIMAL (>>=) #-} (>>=) :: m a %1 -> (a %1 -> m b) %1 -> m b infixl 1 >>= (>>) :: m () %1 -> m a %1 -> m a m >> k = m >>= (\ () -> k) infixl 1 >>",175,186,2025-11-07 11:51:37.925022,2025-11-07 11:51:37.925022 linear,unknown,Control.Functor.Linear.Internal.Class,MonadFail,src/Control/Functor/Linear/Internal/Class.hs:190:18-26,"class Monad m => MonadFail m where fail :: String -> m a",190,191,2025-11-07 11:51:37.925030,2025-11-07 11:51:37.925030 linear,unknown,Control.Functor.Linear.Internal.Class,Unused,src/Control/Functor/Linear/Internal/Class.hs:271:27-32,"class NoPar1 f ~ 'True => Unused f where unused :: f a %1 -> f b",271,272,2025-11-07 11:51:37.925036,2025-11-07 11:51:37.925036 linear,unknown,Control.Functor.Linear.Internal.Class,Unused',src/Control/Functor/Linear/Internal/Class.hs:293:7-13,"class Unused' (left_unused :: Bool) l r where unused' :: l (r a) %1 -> l (r b)",293,294,2025-11-07 11:51:37.925041,2025-11-07 11:51:37.925041 linear,unknown,Control.Functor.Linear.Internal.Class,EitherNoPar1,src/Control/Functor/Linear/Internal/Class.hs:304:51-62,"class (noPar1l ~ NoPar1 l, noPar1r ~ NoPar1 r) => EitherNoPar1 (noPar1l :: Bool) (noPar1r :: Bool) l r where eitherNoPar1Map :: (a %1 -> b) %1 -> (l :*: r) a %1 -> (l :*: r) b",304,305,2025-11-07 11:51:37.925047,2025-11-07 11:51:37.925047 linear,unknown,Control.Functor.Linear.Internal.MonadTrans,MonadTrans,src/Control/Functor/Linear/Internal/MonadTrans.hs:14:45-54,"class (forall m. Monad m => Monad (t m)) => MonadTrans t where lift :: Monad m => m a %1 -> t m a",14,15,2025-11-07 11:51:37.925054,2025-11-07 11:51:37.925054 linear,unknown,Control.Monad.IO.Class.Linear,MonadIO,src/Control/Monad/IO/Class/Linear.hs:13:25-31,"class Linear.Monad m => MonadIO m where liftIO :: Linear.IO a %1 -> m a liftSystemIO :: System.IO a -> m a liftSystemIO io = liftIO (Linear.fromSystemIO io) liftSystemIOU :: System.IO a -> m (Ur a) liftSystemIOU io = liftIO (Linear.fromSystemIOU io)",13,18,2025-11-07 11:51:37.925060,2025-11-07 11:51:37.925060 linear,unknown,Generics.Deriving.Functor,GFunctor,tests/Generics/Deriving/Functor.hs:131:7-14,"class GFunctor f where gmap :: (a -> b) -> f a -> f b default gmap :: (Generic1 f, GFunctor' (Rep1 f)) => (a -> b) -> f a -> f b gmap = gmapdefault",131,136,2025-11-07 11:51:39.902774,2025-11-07 11:51:39.902774 linear,unknown,Generics.Deriving.Copoint,GCopoint',tests/Generics/Deriving/Copoint.hs:45:7-15,"class GCopoint' t where gcopoint' :: (a -> b) -> t a -> Maybe b",45,46,2025-11-07 11:51:39.902782,2025-11-07 11:51:39.902782 linear,unknown,Generics.Deriving.Copoint,GCopoint,tests/Generics/Deriving/Copoint.hs:79:7-14,"class GCopoint d where gcopoint :: d a -> a default gcopoint :: (Generic1 d, GCopoint' (Rep1 d)) => (d a -> a) gcopoint = gcopointdefault",79,83,2025-11-07 11:51:39.902788,2025-11-07 11:51:39.902788 linear,unknown,Generics.Deriving.Show,GShow',tests/Generics/Deriving/Show.hs:88:7-12,"class GShow' f where gshowsPrec' :: Type -> Int -> f a -> ShowS isNullary :: f a -> Bool isNullary = error ""generic show (isNullary): unnecessary case""",88,91,2025-11-07 11:51:39.902795,2025-11-07 11:51:39.902795 linear,unknown,Generics.Deriving.Show,GShow,tests/Generics/Deriving/Show.hs:181:7-11,"class GShow a where gshowsPrec :: Int -> a -> ShowS default gshowsPrec :: (Generic a, GShow' (Rep a)) => Int -> a -> ShowS gshowsPrec = gshowsPrecdefault gshows :: a -> ShowS gshows = gshowsPrec 0 gshow :: a -> String gshow x = gshows x """" gshowList :: [a] -> ShowS gshowList l = showChar '[' . foldr (.) id (intersperse (showChar ',') (map (gshowsPrec 0) l)) . showChar ']'",181,199,2025-11-07 11:51:39.902801,2025-11-07 11:51:39.902801 linear,unknown,Generics.Deriving.Enum,Enum',tests/Generics/Deriving/Enum.hs:117:7-11,"class Enum' f where enum' :: [f a]",117,118,2025-11-07 11:51:39.902811,2025-11-07 11:51:39.902811 linear,unknown,Generics.Deriving.Enum,GEnum,tests/Generics/Deriving/Enum.hs:154:7-11,"class GEnum a where genum :: [a] default genum :: (Generic a, Enum' (Rep a)) => [a] genum = genumDefault",154,159,2025-11-07 11:51:39.902816,2025-11-07 11:51:39.902816 linear,unknown,Generics.Deriving.Enum,GIx,tests/Generics/Deriving/Enum.hs:582:18-20,"class (Ord a) => GIx a where range :: (a, a) -> [a] index :: (a, a) -> a -> Int inRange :: (a, a) -> a -> Bool default range :: (GEq a, Generic a, Enum' (Rep a)) => (a, a) -> [a] range = rangeDefault default index :: (GEq a, Generic a, Enum' (Rep a)) => (a, a) -> a -> Int index = indexDefault default inRange :: (GEq a, Generic a, Enum' (Rep a)) => (a, a) -> a -> Bool inRange = inRangeDefault",582,598,2025-11-07 11:51:39.902822,2025-11-07 11:51:39.902822 linear,unknown,Generics.Deriving.Foldable,GFoldable',tests/Generics/Deriving/Foldable.hs:92:7-16,"class GFoldable' t where gfoldMap' :: Monoid m => (a -> m) -> t a -> m",92,93,2025-11-07 11:51:39.902831,2025-11-07 11:51:39.902831 linear,unknown,Generics.Deriving.Foldable,GFoldable,tests/Generics/Deriving/Foldable.hs:141:7-15,"class GFoldable t where gfoldMap :: Monoid m => (a -> m) -> t a -> m default gfoldMap :: (Generic1 t, GFoldable' (Rep1 t), Monoid m) => (a -> m) -> t a -> m gfoldMap = gfoldMapdefault gfold :: Monoid m => t m -> m gfold = gfoldMap id gfoldr :: (a -> b -> b) -> b -> t a -> b gfoldr f z t = appEndo (gfoldMap (Endo . f) t) z gfoldr' :: (a -> b -> b) -> b -> t a -> b gfoldr' f z0 xs = gfoldl f' id xs z0 where f' k x z = k $! f x z gfoldl :: (a -> b -> a) -> a -> t b -> a gfoldl f z t = appEndo (getDual (gfoldMap (Dual . Endo . flip f) t)) z gfoldl' :: (a -> b -> a) -> a -> t b -> a gfoldl' f z0 xs = gfoldr f' id xs z0 where f' x k z = k $! f z x gfoldr1 :: (a -> a -> a) -> t a -> a gfoldr1 f xs = fromMaybe (error ""gfoldr1: empty structure"") (gfoldr mf Nothing xs) where mf x Nothing = Just x mf x (Just y) = Just (f x y) gfoldl1 :: (a -> a -> a) -> t a -> a gfoldl1 f xs = fromMaybe (error ""foldl1: empty structure"") (gfoldl mf Nothing xs) where mf Nothing y = Just y mf (Just x) y = Just (f x y)",141,178,2025-11-07 11:51:39.902836,2025-11-07 11:51:39.902836 linear,unknown,Generics.Deriving.ConNames,ConNames,tests/Generics/Deriving/ConNames.hs:41:7-14,"class ConNames f where gconNames :: f a -> [String] gconNameOf :: f a -> String",41,43,2025-11-07 11:51:39.902854,2025-11-07 11:51:39.902854 linear,unknown,Generics.Deriving.TraversableConf,GTraversable',tests/Generics/Deriving/TraversableConf.hs:51:7-19,"class GTraversable' t where gtraverse' :: Applicative f => (a -> f b) -> t a -> CY f (t b)",51,52,2025-11-07 11:51:39.902860,2025-11-07 11:51:39.902860 logging,unknown,System.Logging.Facade.Class,Logging,src/System/Logging/Facade/Class.hs:40:18-24,"class Monad m => Logging m where consumeLogRecord :: LogRecord -> m ()",40,41,2025-11-07 11:51:41.383875,2025-11-07 11:51:41.383875 linear,unknown,Generics.Deriving.TraversableConf,GTraversable,tests/Generics/Deriving/TraversableConf.hs:100:36-47,"class (GFunctor t, GFoldable t) => GTraversable t where gtraverse :: Applicative f => (a -> f b) -> t a -> f (t b) default gtraverse :: (Generic1 t, GTraversable' (Rep1 t), Applicative f) => (a -> f b) -> t a -> f (t b) gtraverse = gtraversedefault gsequenceA :: Applicative f => t (f a) -> f (t a) gsequenceA = gtraverse id gmapM :: Monad m => (a -> m b) -> t a -> m (t b) gmapM f = unwrapMonad . gtraverse (WrapMonad . f) gsequence :: Monad m => t (m a) -> m (t a) gsequence = gmapM id",100,113,2025-11-07 11:51:39.902866,2025-11-07 11:51:39.902866 linear,unknown,Generics.Deriving.Eq,GEq',tests/Generics/Deriving/Eq.hs:82:7-10,"class GEq' f where geq' :: f a -> f a -> Bool",82,83,2025-11-07 11:51:39.902877,2025-11-07 11:51:39.902877 linear,unknown,Generics.Deriving.Eq,GEq,tests/Generics/Deriving/Eq.hs:130:7-9,"class GEq a where geq :: a -> a -> Bool default geq :: (Generic a, GEq' (Rep a)) => a -> a -> Bool geq = geqdefault",130,136,2025-11-07 11:51:39.902882,2025-11-07 11:51:39.902882 linear,unknown,Generics.Deriving.Uniplate,Uniplate',tests/Generics/Deriving/Uniplate.hs:72:7-15,"class Uniplate' f b where children' :: f a -> [b] descend' :: (b -> b) -> f a -> f a descendM' :: Monad m => (b -> m b) -> f a -> m (f a) transform' :: (b -> b) -> f a -> f a transformM' :: Monad m => (b -> m b) -> f a -> m (f a)",72,77,2025-11-07 11:51:39.902890,2025-11-07 11:51:39.902890 linear,unknown,Generics.Deriving.Uniplate,Context',tests/Generics/Deriving/Uniplate.hs:136:7-14,"class Context' f b where context' :: f a -> [b] -> f a",136,137,2025-11-07 11:51:39.902897,2025-11-07 11:51:39.902897 linear,unknown,Generics.Deriving.Uniplate,Uniplate,tests/Generics/Deriving/Uniplate.hs:180:7-14,"class Uniplate a where children :: a -> [a] default children :: (Generic a, Uniplate' (Rep a) a) => a -> [a] children = childrendefault context :: a -> [a] -> a default context :: (Generic a, Context' (Rep a) a) => a -> [a] -> a context = contextdefault descend :: (a -> a) -> a -> a default descend :: (Generic a, Uniplate' (Rep a) a) => (a -> a) -> a -> a descend = descenddefault descendM :: Monad m => (a -> m a) -> a -> m a default descendM :: (Generic a, Uniplate' (Rep a) a, Monad m) => (a -> m a) -> a -> m a descendM = descendMdefault transform :: (a -> a) -> a -> a default transform :: (Generic a, Uniplate' (Rep a) a) => (a -> a) -> a -> a transform = transformdefault transformM :: Monad m => (a -> m a) -> a -> m a default transformM :: (Generic a, Uniplate' (Rep a) a, Monad m) => (a -> m a) -> a -> m a transformM = transformMdefault",180,214,2025-11-07 11:51:39.902902,2025-11-07 11:51:39.902902 linear,unknown,Generics.Deriving.Traversable,GTraversable',tests/Generics/Deriving/Traversable.hs:61:7-19,"class GTraversable' t where gtraverse' :: Applicative f => (a -> f b) -> t a -> f (t b)",61,62,2025-11-07 11:51:39.902917,2025-11-07 11:51:39.902917 linear,unknown,Generics.Deriving.Traversable,GTraversable,tests/Generics/Deriving/Traversable.hs:110:36-47,"class (GFunctor t, GFoldable t) => GTraversable t where gtraverse :: Applicative f => (a -> f b) -> t a -> f (t b) default gtraverse :: (Generic1 t, GTraversable' (Rep1 t), Applicative f) => (a -> f b) -> t a -> f (t b) gtraverse = gtraversedefault gsequenceA :: Applicative f => t (f a) -> f (t a) gsequenceA = gtraverse id gmapM :: Monad m => (a -> m b) -> t a -> m (t b) gmapM f = unwrapMonad . gtraverse (WrapMonad . f) gsequence :: Monad m => t (m a) -> m (t a) gsequence = gmapM id",110,125,2025-11-07 11:51:39.902980,2025-11-07 11:51:39.902980 linear,unknown,Generics.Deriving.Monoid.Internal,GMonoid',tests/Generics/Deriving/Monoid/Internal.hs:97:24-31,"class GSemigroup' f => GMonoid' f where gmempty' :: f x gmappend' :: f x -> f x -> f x",97,99,2025-11-07 11:51:39.902992,2025-11-07 11:51:39.902992 linear,unknown,Generics.Deriving.Monoid.Internal,Monoid',tests/Generics/Deriving/Monoid/Internal.hs:131:7-13,"class Monoid' f where mempty' :: f x mappend' :: f x -> f x -> f x",131,133,2025-11-07 11:51:39.902998,2025-11-07 11:51:39.902998 linear,unknown,Generics.Deriving.Monoid.Internal,GMonoid,tests/Generics/Deriving/Monoid/Internal.hs:161:23-29,"class GSemigroup a => GMonoid a where gmempty :: a gmappend :: a -> a -> a gmconcat :: [a] -> a gmconcat = foldr gmappend gmempty default gmempty :: (Generic a, GMonoid' (Rep a)) => a gmempty = to gmempty' default gmappend :: (Generic a, GMonoid' (Rep a)) => a -> a -> a gmappend x y = to (gmappend' (from x) (from y))",161,178,2025-11-07 11:51:39.903003,2025-11-07 11:51:39.903003 linear,unknown,Generics.Deriving.Semigroup.Internal,GSemigroup',tests/Generics/Deriving/Semigroup/Internal.hs:62:7-17,"class GSemigroup' f where gsappend' :: f x -> f x -> f x",62,63,2025-11-07 11:51:39.903012,2025-11-07 11:51:39.903012 linear,unknown,Generics.Deriving.Semigroup.Internal,GSemigroup,tests/Generics/Deriving/Semigroup/Internal.hs:83:7-16,"class GSemigroup a where gsappend :: a -> a -> a default gsappend :: (Generic a, GSemigroup' (Rep a)) => a -> a -> a gsappend = gsappenddefault gstimes :: Integral b => b -> a -> a gstimes y0 x0 | y0 <= 0 = error ""gstimes: positive multiplier expected"" | otherwise = f x0 y0 where f x y | even y = f (gsappend x x) (y `quot` 2) | y == 1 = x | otherwise = g (gsappend x x) (pred y `quot` 2) x g x y z | even y = g (gsappend x x) (y `quot` 2) z | y == 1 = gsappend x z | otherwise = g (gsappend x x) (pred y `quot` 2) (gsappend x z) gsconcat :: NonEmpty a -> a gsconcat (a :| as) = go a as where go b (c : cs) = gsappend b (go c cs) go b [] = b",83,109,2025-11-07 11:51:39.903017,2025-11-07 11:51:39.903017 linear,unknown,Generics.Linear.Class,Generic,src/Generics/Linear/Class.hs:47:7-13,"class Generic a where type Rep a :: Type -> Type to :: forall p m. Rep a p %m -> a from :: forall p m. a %m -> Rep a p",47,51,2025-11-07 11:51:39.903030,2025-11-07 11:51:39.903030 linear,unknown,Generics.Linear.Class,Generic1,src/Generics/Linear/Class.hs:117:7-14,"class Generic1 (f :: k -> Type) where type Rep1 f :: k -> Type to1 :: forall p m. Rep1 f p %m -> f p from1 :: forall p m. f p %m -> Rep1 f p",117,121,2025-11-07 11:51:39.903036,2025-11-07 11:51:39.903036 logict,unknown,Control.Monad.Logic.Class,MonadLogic,Control/Monad/Logic/Class.hs:37:35-44,"class (Monad m, Alternative m) => MonadLogic m where msplit :: m a -> m (Maybe (a, m a)) interleave :: m a -> m a -> m a (>>-) :: m a -> (a -> m b) -> m b infixl 1 >>- once :: m a -> m a lnot :: m a -> m () ifte :: m a -> (a -> m b) -> m b -> m b interleave m1 m2 = msplit m1 >>= maybe m2 (\ (a, m1') -> pure a <|> interleave m2 m1') m >>- f = msplit m >>= maybe empty (\ (a, m') -> interleave (f a) (m' >>- f)) ifte t th el = msplit t >>= maybe el (\ (a, m) -> th a <|> (m >>= th)) once m = msplit m >>= maybe empty (\ (a, _) -> pure a) lnot m = msplit m >>= maybe (pure ()) (const empty)",37,320,2025-11-07 11:51:42.698209,2025-11-07 11:51:42.698209 mason,unknown,Mason.Builder.Internal,Buildable,src/Mason/Builder/Internal.hs:121:7-15,"class Buildable s where byteString :: B.ByteString -> BuilderFor s byteString = byteStringCopy {-# INLINE byteString #-} flush :: BuilderFor s allocate :: Int -> BuilderFor s",121,129,2025-11-07 11:51:46.690542,2025-11-07 11:51:46.690542 math-functions,unknown,Numeric.Sum,Summation,Numeric/Sum.hs:72:7-15,"class Summation s where zero :: s add :: s -> Double -> s sum :: (F.Foldable f) => (s -> Double) -> f Double -> Double sum f = f . F.foldl' add zero {-# INLINE sum #-}",72,85,2025-11-07 11:51:48.063603,2025-11-07 11:51:48.063603 microlens,unknown,Lens.Micro.TH.Internal,HasName,src/Lens/Micro/TH/Internal.hs:69:7-13,"class HasName t where name :: Lens' t Name",69,71,2025-11-07 11:51:57.722557,2025-11-07 11:51:57.722557 math-functions,unknown,Numeric.RootFinding,IterationStep,Numeric/RootFinding.hs:147:7-19,"class IterationStep a where matchRoot :: Tolerance -> a -> Maybe (Root Double)",147,150,2025-11-07 11:51:48.063620,2025-11-07 11:51:48.063620 megaparsec,unknown,Text.Megaparsec.Error,ShowErrorComponent,Text/Megaparsec/Error.hs:335:18-35,"class (Ord a) => ShowErrorComponent a where showErrorComponent :: a -> String errorComponentLen :: a -> Int errorComponentLen _ = 1",335,344,2025-11-07 11:51:49.595640,2025-11-07 11:51:49.595640 megaparsec,unknown,Text.Megaparsec.Stream,Stream,Text/Megaparsec/Stream.hs:66:42-47,"class (Ord (Token s), Ord (Tokens s)) => Stream s where type Token s :: Type type Tokens s :: Type tokenToChunk :: Proxy s -> Token s -> Tokens s tokenToChunk pxy = tokensToChunk pxy . pure tokensToChunk :: Proxy s -> [Token s] -> Tokens s chunkToTokens :: Proxy s -> Tokens s -> [Token s] chunkLength :: Proxy s -> Tokens s -> Int chunkEmpty :: Proxy s -> Tokens s -> Bool chunkEmpty pxy ts = chunkLength pxy ts <= 0 take1_ :: s -> Maybe (Token s, s) takeN_ :: Int -> s -> Maybe (Tokens s, s) takeWhile_ :: (Token s -> Bool) -> s -> (Tokens s, s)",66,132,2025-11-07 11:51:49.595658,2025-11-07 11:51:49.595658 megaparsec,unknown,Text.Megaparsec.Stream,VisualStream,Text/Megaparsec/Stream.hs:412:21-32,"class (Stream s) => VisualStream s where showTokens :: Proxy s -> NonEmpty (Token s) -> String tokensLength :: Proxy s -> NonEmpty (Token s) -> Int tokensLength Proxy = NE.length",412,425,2025-11-07 11:51:49.595670,2025-11-07 11:51:49.595670 megaparsec,unknown,Text.Megaparsec.Stream,TraversableStream,Text/Megaparsec/Stream.hs:445:21-37,"class (Stream s) => TraversableStream s where {-# MINIMAL reachOffset | reachOffsetNoLine #-} reachOffset :: Int "" Offset to reach"" -> PosState s "" Initial 'PosState' to use"" -> (Maybe String, PosState s) "" See the description of the function"" reachOffset o pst = (Nothing, reachOffsetNoLine o pst) reachOffsetNoLine :: Int "" Offset to reach"" -> PosState s "" Initial 'PosState' to use"" -> PosState s "" Reached source position and updated state"" reachOffsetNoLine o pst = snd (reachOffset o pst)",445,508,2025-11-07 11:51:49.595678,2025-11-07 11:51:49.595678 megaparsec,unknown,Text.Megaparsec.Debug,MonadParsecDbg,Text/Megaparsec/Debug.hs:46:30-43,"class (MonadParsec e s m) => MonadParsecDbg e s m where dbg :: (Show a) => String "" Debugging label"" -> m a "" Parser to debug"" -> m a "" Parser that prints debugging messages""",46,79,2025-11-07 11:51:49.595689,2025-11-07 11:51:49.595689 megaparsec,unknown,Text.Megaparsec.Class,MonadParsec,Text/Megaparsec/Class.hs:49:34-44,"class (Stream s, MonadPlus m) => MonadParsec e s m | m -> e s where parseError :: ParseError s e -> m a label :: String -> m a -> m a hidden :: m a -> m a hidden = label """" try :: m a -> m a lookAhead :: m a -> m a notFollowedBy :: m a -> m () withRecovery :: (ParseError s e -> m a) "" How to recover from failure"" -> m a "" Original parser"" -> m a "" Parser that can recover from failures"" observing :: m a "" The parser to run"" -> m (Either (ParseError s e) a) eof :: m () token :: (Token s -> Maybe a) "" Matching function for the token to parse"" -> Set (ErrorItem (Token s)) "" Used in the error message to mention the items that were expected"" -> m a tokens :: (Tokens s -> Tokens s -> Bool) "" Predicate to check equality of chunks"" -> Tokens s "" Chunk of input to match against"" -> m (Tokens s) takeWhileP :: Maybe String "" Name for a single token in the row"" -> (Token s -> Bool) "" Predicate to use to test tokens"" -> m (Tokens s) "" A chunk of matching tokens"" takeWhile1P :: Maybe String "" Name for a single token in the row"" -> (Token s -> Bool) "" Predicate to use to test tokens"" -> m (Tokens s) "" A chunk of matching tokens"" takeP :: Maybe String "" Name for a single token in the row"" -> Int "" How many tokens to extract"" -> m (Tokens s) "" A chunk of matching tokens"" getParserState :: m (State s e) updateParserState :: (State s e -> State s e) -> m ()",49,273,2025-11-07 11:51:49.595697,2025-11-07 11:51:49.595697 megaparsec,unknown,Text.Megaparsec.Byte.Binary,BinaryChunk,Text/Megaparsec/Byte/Binary.hs:54:7-17,"class BinaryChunk chunk where convertChunkBE :: (Bits a, Num a) => chunk -> a convertChunkLE :: (Bits a, Num a) => chunk -> a",54,56,2025-11-07 11:51:49.595718,2025-11-07 11:51:49.595718 memory,unknown,Data.ByteArray.Types,ByteArrayAccess,Data/ByteArray/Types.hs:48:7-21,"class ByteArrayAccess ba where length :: ba -> Int withByteArray :: ba -> (Ptr p -> IO a) -> IO a copyByteArrayToPtr :: ba -> Ptr p -> IO () copyByteArrayToPtr a dst = withByteArray a $ \ src -> memCopy (castPtr dst) src (length a)",48,55,2025-11-07 11:51:51.081620,2025-11-07 11:51:51.081620 memory,unknown,Data.ByteArray.Types,ByteArray,Data/ByteArray/Types.hs:58:57-65,"class (Eq ba, Ord ba, Monoid ba, ByteArrayAccess ba) => ByteArray ba where allocRet :: Int "" number of bytes to allocate. i.e. might not match the size of the given type `ba`."" -> (Ptr p -> IO a) -> IO (a, ba)",58,64,2025-11-07 11:51:51.081629,2025-11-07 11:51:51.081629 memory,unknown,Data.ByteArray.Sized,ByteArrayN,Data/ByteArray/Sized.hs:92:42-51,"class (ByteArrayAccess c, KnownNat n) => ByteArrayN (n :: Nat) c | c -> n where allocRet :: forall p a. Proxy n -> (Ptr p -> IO a) -> IO (a, c)",92,97,2025-11-07 11:51:51.081636,2025-11-07 11:51:51.081636 microlens,unknown,Lens.Micro.Internal,Each,src/Lens/Micro/Internal.hs:166:7-10,"class Each s t a b | s -> a, t -> b, s b -> t, t a -> s where each :: Traversal s t a b",166,196,2025-11-07 11:51:52.493649,2025-11-07 11:51:52.493649 microlens,unknown,Lens.Micro.Internal,Ixed,src/Lens/Micro/Internal.hs:260:7-10,"class Ixed m where ix :: Index m -> Traversal' m (IxValue m)",260,305,2025-11-07 11:51:52.493663,2025-11-07 11:51:52.493663 microlens,unknown,Lens.Micro.Internal,At,src/Lens/Micro/Internal.hs:307:17-18,"class Ixed m => At m where at :: Index m -> Lens' m (Maybe (IxValue m))",307,342,2025-11-07 11:51:52.493670,2025-11-07 11:51:52.493670 microlens,unknown,Lens.Micro.Internal,Field1,src/Lens/Micro/Internal.hs:369:7-12,"class Field1 s t a b | s -> a, t -> b, s b -> t, t a -> s where _1 :: Lens s t a b",369,410,2025-11-07 11:51:52.493675,2025-11-07 11:51:52.493675 microlens,unknown,Lens.Micro.Internal,Field2,src/Lens/Micro/Internal.hs:448:7-12,"class Field2 s t a b | s -> a, t -> b, s b -> t, t a -> s where _2 :: Lens s t a b",448,449,2025-11-07 11:51:52.493683,2025-11-07 11:51:52.493683 microlens,unknown,Lens.Micro.Internal,Field3,src/Lens/Micro/Internal.hs:487:7-12,"class Field3 s t a b | s -> a, t -> b, s b -> t, t a -> s where _3 :: Lens s t a b",487,488,2025-11-07 11:51:52.493688,2025-11-07 11:51:52.493688 microlens,unknown,Lens.Micro.Internal,Field4,src/Lens/Micro/Internal.hs:522:7-12,"class Field4 s t a b | s -> a, t -> b, s b -> t, t a -> s where _4 :: Lens s t a b",522,523,2025-11-07 11:51:52.493694,2025-11-07 11:51:52.493694 microlens,unknown,Lens.Micro.Internal,Field5,src/Lens/Micro/Internal.hs:553:7-12,"class Field5 s t a b | s -> a, t -> b, s b -> t, t a -> s where _5 :: Lens s t a b",553,554,2025-11-07 11:51:52.493699,2025-11-07 11:51:52.493699 microlens,unknown,Lens.Micro.Internal,Cons,src/Lens/Micro/Internal.hs:580:7-10,"class Cons s t a b | s -> a, t -> b, s b -> t, t a -> s where _Cons :: Traversal s t (a, s) (b, t)",580,581,2025-11-07 11:51:52.493704,2025-11-07 11:51:52.493704 microlens,unknown,Lens.Micro.Internal,Snoc,src/Lens/Micro/Internal.hs:588:7-10,"class Snoc s t a b | s -> a, t -> b, s b -> t, t a -> s where _Snoc :: Traversal s t (s, a) (t, b)",588,589,2025-11-07 11:51:52.493710,2025-11-07 11:51:52.493710 microlens,unknown,Lens.Micro.Internal,Strict,src/Lens/Micro/Internal.hs:596:7-12,"class Strict lazy strict | lazy -> strict, strict -> lazy where strict :: Lens' lazy strict lazy :: Lens' strict lazy",596,626,2025-11-07 11:51:52.493715,2025-11-07 11:51:52.493715 microlens,unknown,Lens.Micro.GHC.Internal,IsByteString,src/Lens/Micro/GHC/Internal.hs:65:7-18,"class IsByteString t where packedBytes :: Lens' [Word8] t unpackedBytes :: Lens' t [Word8] packedChars :: Lens' String t unpackedChars :: Lens' t String chars :: Traversal' t Char",65,85,2025-11-07 11:51:53.787206,2025-11-07 11:51:53.787206 microlens-mtl,unknown,Lens.Micro.Mtl.Internal,Zoom,src/Lens/Micro/Mtl/Internal.hs:278:43-46,"class (MonadState s m, MonadState t n) => Zoom m n s t | m -> s, n -> t, m t -> n, n s -> m where zoom :: LensLike' (Zoomed m c) t s -> m c -> n c",278,374,2025-11-07 11:51:55.083832,2025-11-07 11:51:55.083832 microlens-mtl,unknown,Lens.Micro.Mtl.Internal,Magnify,src/Lens/Micro/Mtl/Internal.hs:450:45-51,"class (MonadReader b m, MonadReader a n) => Magnify m n b a | m -> b, n -> a, m a -> n, n b -> m where magnify :: LensLike' (Magnified m c) a b -> m c -> n c",450,508,2025-11-07 11:51:55.083851,2025-11-07 11:51:55.083851 microlens,unknown,Lens.Micro.Platform.Internal,IsText,src/Lens/Micro/Platform/Internal.hs:28:7-12,"class IsText t where packed :: Lens' String t unpacked :: Lens' t String",28,37,2025-11-07 11:51:56.391607,2025-11-07 11:51:56.391607 microlens,unknown,Lens.Micro.TH.Internal,HasTypeVars,src/Lens/Micro/TH/Internal.hs:98:7-17,"class HasTypeVars t where typeVarsEx :: Set Name -> Traversal' t Name",98,102,2025-11-07 11:51:57.722567,2025-11-07 11:51:57.722567 microstache,unknown,Test.Hspec,Describe,tasty-as-hspec/Test/Hspec.hs:55:7-14,"class Describe r where describe :: TestName -> TestTreeM () -> r",55,56,2025-11-07 11:51:59.018762,2025-11-07 11:51:59.018762 mmorph,unknown,Control.Monad.Morph,MFunctor,src/Control/Monad/Morph.hs:109:7-14,"class MFunctor t where hoist :: (Monad m) => (forall a. m a -> n a) -> t m b -> t n b",109,116,2025-11-07 11:52:02.904928,2025-11-07 11:52:02.904928 mmorph,unknown,Control.Monad.Morph,MMonad,src/Control/Monad/Morph.hs:175:37-42,"class (MFunctor t, MonadTrans t) => MMonad t where embed :: (Monad n) => (forall a. m a -> t n a) -> t m b -> t n b",175,180,2025-11-07 11:52:02.904937,2025-11-07 11:52:02.904937 monad-control,unknown,Control.Monad.Trans.Control,MonadTransControl,src/Control/Monad/Trans/Control.hs:177:23-39,"class MonadTrans t => MonadTransControl t where type StT t a :: * liftWith :: Monad m => (Run t -> m a) -> t m a restoreT :: Monad m => m (StT t a) -> t m a",177,283,2025-11-07 11:52:05.454128,2025-11-07 11:52:05.454128 monad-control,unknown,Control.Monad.Trans.Control,MonadBaseControl,src/Control/Monad/Trans/Control.hs:515:24-39,"class MonadBase b m => MonadBaseControl b m | m -> b where type StM m a :: * liftBaseWith :: (RunInBase m b -> b a) -> m a restoreM :: StM m a -> m a",515,587,2025-11-07 11:52:05.454141,2025-11-07 11:52:05.454141 monad-parallel,unknown,Control.Monad.Parallel,MonadParallel,Control/Monad/Parallel.hs:81:18-30,"class Monad m => MonadParallel m where bindM2 :: (a -> b -> m c) -> m a -> m b -> m c bindM2 f ma mb = let ma' = ma >>= return mb' = mb >>= return in ma' `par` (mb' `pseq` do a <- ma' b <- mb' f a b)",81,88,2025-11-07 11:52:08.206465,2025-11-07 11:52:08.206465 monad-parallel,unknown,Control.Monad.Parallel,MonadFork,Control/Monad/Parallel.hs:91:26-34,"class MonadParallel m => MonadFork m where forkExec :: m a -> m (m a) forkExec e = let result = e >>= return in result `par` (return result)",91,95,2025-11-07 11:52:08.206479,2025-11-07 11:52:08.206479 monad-time,unknown,Control.Monad.Time,MonadTime,src/Control/Monad/Time.hs:14:18-26,"class Monad m => MonadTime m where currentTime :: m UTCTime monotonicTime :: m Double",14,16,2025-11-07 11:52:09.520380,2025-11-07 11:52:09.520380 mono-traversable,unknown,Data.Containers,SetContainer,src/Data/Containers.hs:32:110-121,"class (Data.Monoid.Monoid set, Semigroup set, MonoFoldable set, Eq (ContainerKey set), GrowingAppend set) => SetContainer set where type ContainerKey set member :: ContainerKey set -> set -> Bool notMember :: ContainerKey set -> set -> Bool union :: set -> set -> set unions :: (MonoFoldable mono, Element mono ~ set) => mono -> set unions = ofoldl' union Data.Monoid.mempty {-# INLINE unions #-} difference :: set -> set -> set intersection :: set -> set -> set keys :: set -> [ContainerKey set]",32,62,2025-11-07 11:52:11.102365,2025-11-07 11:52:11.102365 mono-traversable,unknown,Data.Containers,PolyMap,src/Data/Containers.hs:188:7-13,"class PolyMap map where differenceMap :: map value1 -> map value2 -> map value1 intersectionMap :: map value1 -> map value2 -> map value1 intersectionWithMap :: (value1 -> value2 -> value3) -> map value1 -> map value2 -> map value3",188,202,2025-11-07 11:52:11.102384,2025-11-07 11:52:11.102384 mono-traversable,unknown,Data.Containers,BiPolyMap,src/Data/Containers.hs:235:7-15,"class BiPolyMap map where type BPMKeyConstraint map key :: Constraint mapKeysWith :: (BPMKeyConstraint map k1, BPMKeyConstraint map k2) => (v -> v -> v) "" combine values that now overlap"" -> (k1 -> k2) -> map k1 v -> map k2 v",235,241,2025-11-07 11:52:11.102392,2025-11-07 11:52:11.102392 mono-traversable,unknown,Data.Containers,IsMap,src/Data/Containers.hs:255:50-54,"class (MonoTraversable map, SetContainer map) => IsMap map where type MapValue map lookup :: ContainerKey map -> map -> Maybe (MapValue map) insertMap :: ContainerKey map -> MapValue map -> map -> map deleteMap :: ContainerKey map -> map -> map singletonMap :: ContainerKey map -> MapValue map -> map mapFromList :: [(ContainerKey map, MapValue map)] -> map mapToList :: map -> [(ContainerKey map, MapValue map)] findWithDefault :: MapValue map -> ContainerKey map -> map -> MapValue map findWithDefault def key = fromMaybe def . lookup key insertWith :: (MapValue map -> MapValue map -> MapValue map) "" function that accepts the new value and the previous value and returns the value that will be set in the map."" -> ContainerKey map "" key"" -> MapValue map "" new value to insert"" -> map "" input map"" -> map "" resulting map"" insertWith f k v m = v' `seq` insertMap k v' m where v' = case lookup k m of Nothing -> v Just vold -> f v vold insertWithKey :: (ContainerKey map -> MapValue map -> MapValue map -> MapValue map) "" function that accepts the key, the new value, and the previous value and returns the value that will be set in the map."" -> ContainerKey map "" key"" -> MapValue map "" new value to insert"" -> map "" input map"" -> map "" resulting map"" insertWithKey f k v m = v' `seq` insertMap k v' m where v' = case lookup k m of Nothing -> v Just vold -> f k v vold insertLookupWithKey :: (ContainerKey map -> MapValue map -> MapValue map -> MapValue map) "" function that accepts the key, the new value, and the previous value and returns the value that will be set in the map."" -> ContainerKey map "" key"" -> MapValue map "" new value to insert"" -> map "" input map"" -> (Maybe (MapValue map), map) "" previous value and the resulting map"" insertLookupWithKey f k v m = v' `seq` (mold, insertMap k v' m) where (mold, v') = case lookup k m of Nothing -> (Nothing, v) Just vold -> (Just vold, f k v vold) adjustMap :: (MapValue map -> MapValue map) "" function to apply to the previous value"" -> ContainerKey map "" key"" -> map "" input map"" -> map "" resulting map"" adjustMap f k m = case lookup k m of Nothing -> m Just v -> let v' = f v in v' `seq` insertMap k v' m adjustWithKey :: (ContainerKey map -> MapValue map -> MapValue map) "" function that accepts the key and the previous value and returns the new value"" -> ContainerKey map "" key"" -> map "" input map"" -> map "" resulting map"" adjustWithKey f k m = case lookup k m of Nothing -> m Just v -> let v' = f k v in v' `seq` insertMap k v' m updateMap :: (MapValue map -> Maybe (MapValue map)) "" function that accepts the previous value and returns the new value or 'Nothing'"" -> ContainerKey map "" key"" -> map "" input map"" -> map "" resulting map"" updateMap f k m = case lookup k m of Nothing -> m Just v -> case f v of Nothing -> deleteMap k m Just v' -> v' `seq` insertMap k v' m updateWithKey :: (ContainerKey map -> MapValue map -> Maybe (MapValue map)) "" function that accepts the key and the previous value and returns the new value or 'Nothing'"" -> ContainerKey map "" key"" -> map "" input map"" -> map "" resulting map"" updateWithKey f k m = case lookup k m of Nothing -> m Just v -> case f k v of Nothing -> deleteMap k m Just v' -> v' `seq` insertMap k v' m updateLookupWithKey :: (ContainerKey map -> MapValue map -> Maybe (MapValue map)) "" function that accepts the key and the previous value and returns the new value or 'Nothing'"" -> ContainerKey map "" key"" -> map "" input map"" -> (Maybe (MapValue map), map) "" previous/new value and the resulting map"" updateLookupWithKey f k m = case lookup k m of Nothing -> (Nothing, m) Just v -> case f k v of Nothing -> (Just v, deleteMap k m) Just v' -> v' `seq` (Just v', insertMap k v' m) alterMap :: (Maybe (MapValue map) -> Maybe (MapValue map)) "" function that accepts the previous value and returns the new value or 'Nothing'"" -> ContainerKey map "" key"" -> map "" input map"" -> map "" resulting map"" alterMap f k m = case f mold of Nothing -> case mold of Nothing -> m Just _ -> deleteMap k m Just v -> insertMap k v m where mold = lookup k m unionWith :: (MapValue map -> MapValue map -> MapValue map) "" function that accepts the first map's value and the second map's value and returns the new value that will be used"" -> map "" first map"" -> map "" second map"" -> map "" resulting map"" unionWith f x y = mapFromList $ loop $ mapToList x ++ mapToList y where loop [] = [] loop ((k, v) : rest) = case List.lookup k rest of Nothing -> (k, v) : loop rest Just v' -> (k, f v v') : loop (deleteMap k rest) unionWithKey :: (ContainerKey map -> MapValue map -> MapValue map -> MapValue map) "" function that accepts the key, the first map's value and the second map's value and returns the new value that will be used"" -> map "" first map"" -> map "" second map"" -> map "" resulting map"" unionWithKey f x y = mapFromList $ loop $ mapToList x ++ mapToList y where loop [] = [] loop ((k, v) : rest) = case List.lookup k rest of Nothing -> (k, v) : loop rest Just v' -> (k, f k v v') : loop (deleteMap k rest) unionsWith :: (MapValue map -> MapValue map -> MapValue map) "" function that accepts the first map's value and the second map's value and returns the new value that will be used"" -> [map] "" input list of maps"" -> map "" resulting map"" unionsWith _ [] = mempty unionsWith _ [x] = x unionsWith f (x : y : z) = unionsWith f (unionWith f x y : z) mapWithKey :: (ContainerKey map -> MapValue map -> MapValue map) "" function that accepts the key and the previous value and returns the new value"" -> map "" input map"" -> map "" resulting map"" mapWithKey f = mapFromList . map go . mapToList where go (k, v) = (k, f k v) omapKeysWith :: (MapValue map -> MapValue map -> MapValue map) "" function that accepts the first map's value and the second map's value and returns the new value that will be used"" -> (ContainerKey map -> ContainerKey map) "" function that accepts the previous key and returns the new key"" -> map "" input map"" -> map "" resulting map"" omapKeysWith g f = mapFromList . unionsWith g . map go . mapToList where go (k, v) = [(f k, v)] filterMap :: IsMap map => (MapValue map -> Bool) -> map -> map filterMap p = mapFromList . filter (p . snd) . mapToList",255,551,2025-11-07 11:52:11.102399,2025-11-07 11:52:11.102399 mono-traversable,unknown,Data.Containers,IsSet,src/Data/Containers.hs:703:61-65,"class (SetContainer set, Element set ~ ContainerKey set) => IsSet set where insertSet :: Element set -> set -> set deleteSet :: Element set -> set -> set singletonSet :: Element set -> set setFromList :: [Element set] -> set setToList :: set -> [Element set] filterSet :: (Element set -> Bool) -> set -> set filterSet p = setFromList . filter p . setToList",703,723,2025-11-07 11:52:11.102536,2025-11-07 11:52:11.102536 mono-traversable,unknown,Data.Containers,MonoZip,src/Data/Containers.hs:769:27-33,"class MonoFunctor mono => MonoZip mono where ozipWith :: (Element mono -> Element mono -> Element mono) -> mono -> mono -> mono ozip :: mono -> mono -> [(Element mono, Element mono)] ounzip :: [(Element mono, Element mono)] -> (mono, mono)",769,778,2025-11-07 11:52:11.102546,2025-11-07 11:52:11.102546 mono-traversable,unknown,Data.Containers,HasKeysSet,src/Data/Containers.hs:811:27-36,"class SetContainer set => HasKeysSet set where type KeySet set keysSet :: set -> KeySet set",811,816,2025-11-07 11:52:11.102553,2025-11-07 11:52:11.102553 mono-traversable,unknown,Data.Sequences,SemiSequence,src/Data/Sequences.hs:58:52-63,"class (Integral (Index seq), GrowingAppend seq) => SemiSequence seq where type Index seq intersperse :: Element seq -> seq -> seq reverse :: seq -> seq find :: (Element seq -> Bool) -> seq -> Maybe (Element seq) sortBy :: (Element seq -> Element seq -> Ordering) -> seq -> seq cons :: Element seq -> seq -> seq snoc :: seq -> Element seq -> seq",58,115,2025-11-07 11:52:11.102559,2025-11-07 11:52:11.102559 mono-traversable,unknown,Data.Sequences,IsSequence,src/Data/Sequences.hs:136:79-88,"class (Monoid seq, MonoTraversable seq, SemiSequence seq, MonoPointed seq) => IsSequence seq where fromList :: [Element seq] -> seq fromList = mconcat . fmap singleton lengthIndex :: seq -> Index seq lengthIndex = fromIntegral . olength64 break :: (Element seq -> Bool) -> seq -> (seq, seq) break f = (fromList *** fromList) . List.break f . otoList span :: (Element seq -> Bool) -> seq -> (seq, seq) span f = (fromList *** fromList) . List.span f . otoList dropWhile :: (Element seq -> Bool) -> seq -> seq dropWhile f = fromList . List.dropWhile f . otoList takeWhile :: (Element seq -> Bool) -> seq -> seq takeWhile f = fromList . List.takeWhile f . otoList splitAt :: Index seq -> seq -> (seq, seq) splitAt i = (fromList *** fromList) . List.genericSplitAt i . otoList unsafeSplitAt :: Index seq -> seq -> (seq, seq) unsafeSplitAt i seq = (unsafeTake i seq, unsafeDrop i seq) take :: Index seq -> seq -> seq take i = fst . splitAt i unsafeTake :: Index seq -> seq -> seq unsafeTake = take drop :: Index seq -> seq -> seq drop i = snd . splitAt i unsafeDrop :: Index seq -> seq -> seq unsafeDrop = drop dropEnd :: Index seq -> seq -> seq dropEnd i s = fst $ splitAt (lengthIndex s - i) s partition :: (Element seq -> Bool) -> seq -> (seq, seq) partition f = (fromList *** fromList) . List.partition f . otoList uncons :: seq -> Maybe (Element seq, seq) uncons = fmap (second fromList) . uncons . otoList unsnoc :: seq -> Maybe (seq, Element seq) unsnoc = fmap (first fromList) . unsnoc . otoList filter :: (Element seq -> Bool) -> seq -> seq filter f = fromList . List.filter f . otoList filterM :: Monad m => (Element seq -> m Bool) -> seq -> m seq filterM f = liftM fromList . filterM f . otoList replicate :: Index seq -> Element seq -> seq replicate i = fromList . List.genericReplicate i replicateM :: Monad m => Index seq -> m (Element seq) -> m seq replicateM i = liftM fromList . Control.Monad.replicateM (fromIntegral i) groupBy :: (Element seq -> Element seq -> Bool) -> seq -> [seq] groupBy f = fmap fromList . List.groupBy f . otoList groupAllOn :: Eq b => (Element seq -> b) -> seq -> [seq] groupAllOn f = fmap fromList . groupAllOn f . otoList subsequences :: seq -> [seq] subsequences = List.map fromList . List.subsequences . otoList permutations :: seq -> [seq] permutations = List.map fromList . List.permutations . otoList tailEx :: seq -> seq tailEx = snd . maybe (error ""Data.Sequences.tailEx"") id . uncons tailMay :: seq -> Maybe seq tailMay seq | onull seq = Nothing | otherwise = Just (tailEx seq) {-# INLINE tailMay #-} initEx :: seq -> seq initEx = fst . maybe (error ""Data.Sequences.initEx"") id . unsnoc initMay :: IsSequence seq => seq -> Maybe seq initMay seq | onull seq = Nothing | otherwise = Just (initEx seq) {-# INLINE initMay #-} unsafeTail :: seq -> seq unsafeTail = tailEx unsafeInit :: seq -> seq unsafeInit = initEx index :: seq -> Index seq -> Maybe (Element seq) index seq' idx | idx < 0 = Nothing | otherwise = headMay (drop idx seq') indexEx :: seq -> Index seq -> Element seq indexEx seq' idx = maybe (error ""Data.Sequences.indexEx"") id (index seq' idx) unsafeIndex :: seq -> Index seq -> Element seq unsafeIndex = indexEx splitWhen :: (Element seq -> Bool) -> seq -> [seq] splitWhen = defaultSplitWhen {-# INLINE fromList #-} {-# INLINE break #-} {-# INLINE span #-} {-# INLINE dropWhile #-} {-# INLINE takeWhile #-} {-# INLINE splitAt #-} {-# INLINE unsafeSplitAt #-} {-# INLINE take #-} {-# INLINE unsafeTake #-} {-# INLINE drop #-} {-# INLINE unsafeDrop #-} {-# INLINE partition #-} {-# INLINE uncons #-} {-# INLINE unsnoc #-} {-# INLINE filter #-} {-# INLINE filterM #-} {-# INLINE replicate #-} {-# INLINE replicateM #-} {-# INLINE groupBy #-} {-# INLINE groupAllOn #-} {-# INLINE subsequences #-} {-# INLINE permutations #-} {-# INLINE tailEx #-} {-# INLINE initEx #-} {-# INLINE unsafeTail #-} {-# INLINE unsafeInit #-} {-# INLINE index #-} {-# INLINE indexEx #-} {-# INLINE unsafeIndex #-} {-# INLINE splitWhen #-}",136,504,2025-11-07 11:52:11.102568,2025-11-07 11:52:11.102568 mono-traversable,unknown,Data.Sequences,Textual,src/Data/Sequences.hs:1470:55-61,"class (IsSequence t, IsString t, Element t ~ Char) => Textual t where words :: t -> [t] unwords :: (Element seq ~ t, MonoFoldable seq) => seq -> t lines :: t -> [t] unlines :: (Element seq ~ t, MonoFoldable seq) => seq -> t toLower :: t -> t toUpper :: t -> t toCaseFold :: t -> t breakWord :: t -> (t, t) breakWord = fmap (dropWhile isSpace) . break isSpace {-# INLINE breakWord #-} breakLine :: t -> (t, t) breakLine = (killCR *** drop 1) . break (== '\n') where killCR t = case unsnoc t of Just (t', '\r') -> t' _ -> t",1470,1549,2025-11-07 11:52:11.102616,2025-11-07 11:52:11.102616 mono-traversable,unknown,Data.Sequences,LazySequence,src/Data/Sequences.hs:1618:47-58,"class (IsSequence lazy, IsSequence strict) => LazySequence lazy strict | lazy -> strict, strict -> lazy where toChunks :: lazy -> [strict] fromChunks :: [strict] -> lazy toStrict :: lazy -> strict fromStrict :: strict -> lazy",1618,1622,2025-11-07 11:52:11.102627,2025-11-07 11:52:11.102627 mono-traversable,unknown,Data.Sequences,Utf8,src/Data/Sequences.hs:1661:47-50,"class (Textual textual, IsSequence binary) => Utf8 textual binary | textual -> binary, binary -> textual where encodeUtf8 :: textual -> binary decodeUtf8 :: binary -> textual",1661,1670,2025-11-07 11:52:11.102634,2025-11-07 11:52:11.102634 mono-traversable,unknown,Data.MonoTraversable,MonoFunctor,src/Data/MonoTraversable.hs:167:7-17,"class MonoFunctor mono where omap :: (Element mono -> Element mono) -> mono -> mono default omap :: (Functor f, Element (f a) ~ a, f a ~ mono) => (Element mono -> Element mono) -> mono -> mono omap = fmap {-# INLINE omap #-}",167,173,2025-11-07 11:52:11.102641,2025-11-07 11:52:11.102641 mono-traversable,unknown,Data.MonoTraversable,MonoFoldable,src/Data/MonoTraversable.hs:269:7-18,"class MonoFoldable mono where ofoldMap :: Monoid m => (Element mono -> m) -> mono -> m default ofoldMap :: (t a ~ mono, a ~ Element (t a), F.Foldable t, Monoid m) => (Element mono -> m) -> mono -> m ofoldMap = F.foldMap {-# INLINE ofoldMap #-} ofoldr :: (Element mono -> b -> b) -> b -> mono -> b default ofoldr :: (t a ~ mono, a ~ Element (t a), F.Foldable t) => (Element mono -> b -> b) -> b -> mono -> b ofoldr = F.foldr {-# INLINE ofoldr #-} ofoldl' :: (a -> Element mono -> a) -> a -> mono -> a default ofoldl' :: (t b ~ mono, b ~ Element (t b), F.Foldable t) => (a -> Element mono -> a) -> a -> mono -> a ofoldl' = F.foldl' {-# INLINE ofoldl' #-} otoList :: mono -> [Element mono] otoList t = build (\ mono n -> ofoldr mono n t) {-# INLINE otoList #-} oall :: (Element mono -> Bool) -> mono -> Bool oall f = getAll . ofoldMap (All . f) {-# INLINE oall #-} oany :: (Element mono -> Bool) -> mono -> Bool oany f = getAny . ofoldMap (Any . f) {-# INLINE oany #-} onull :: mono -> Bool onull = oall (const False) {-# INLINE onull #-} olength :: mono -> Int olength = ofoldl' (\ i _ -> i + 1) 0 {-# INLINE olength #-} olength64 :: mono -> Int64 olength64 = ofoldl' (\ i _ -> i + 1) 0 {-# INLINE olength64 #-} ocompareLength :: Integral i => mono -> i -> Ordering ocompareLength c0 i0 = olength c0 `compare` fromIntegral i0 {-# INLINE ocompareLength #-} otraverse_ :: Applicative f => (Element mono -> f b) -> mono -> f () otraverse_ f = ofoldr ((*>) . f) (pure ()) {-# INLINE otraverse_ #-} ofor_ :: Applicative f => mono -> (Element mono -> f b) -> f () ofor_ = flip otraverse_ {-# INLINE ofor_ #-} omapM_ :: Applicative m => (Element mono -> m ()) -> mono -> m () omapM_ = otraverse_ {-# INLINE omapM_ #-} oforM_ :: Applicative m => mono -> (Element mono -> m ()) -> m () oforM_ = flip omapM_ {-# INLINE oforM_ #-} ofoldlM :: Monad m => (a -> Element mono -> m a) -> a -> mono -> m a ofoldlM f z0 xs = ofoldr f' return xs z0 where f' x k z = f z x >>= k {-# INLINE ofoldlM #-} ofoldMap1Ex :: Semigroup m => (Element mono -> m) -> mono -> m ofoldMap1Ex f = fromMaybe (Prelude.error ""Data.MonoTraversable.ofoldMap1Ex"") . ofoldMap (Just . f) ofoldr1Ex :: (Element mono -> Element mono -> Element mono) -> mono -> Element mono default ofoldr1Ex :: (t a ~ mono, a ~ Element (t a), F.Foldable t) => (Element mono -> Element mono -> Element mono) -> mono -> Element mono ofoldr1Ex = F.foldr1 {-# INLINE ofoldr1Ex #-} ofoldl1Ex' :: (Element mono -> Element mono -> Element mono) -> mono -> Element mono default ofoldl1Ex' :: (t a ~ mono, a ~ Element (t a), F.Foldable t) => (Element mono -> Element mono -> Element mono) -> mono -> Element mono ofoldl1Ex' = F.foldl1 {-# INLINE ofoldl1Ex' #-} headEx :: mono -> Element mono headEx = ofoldr const (Prelude.error ""Data.MonoTraversable.headEx: empty"") {-# INLINE headEx #-} lastEx :: mono -> Element mono lastEx = ofoldl1Ex' (flip const) {-# INLINE lastEx #-} unsafeHead :: mono -> Element mono unsafeHead = headEx {-# INLINE unsafeHead #-} unsafeLast :: mono -> Element mono unsafeLast = lastEx {-# INLINE unsafeLast #-} maximumByEx :: (Element mono -> Element mono -> Ordering) -> mono -> Element mono maximumByEx f = ofoldl1Ex' go where go x y = case f x y of LT -> y _ -> x {-# INLINE maximumByEx #-} minimumByEx :: (Element mono -> Element mono -> Ordering) -> mono -> Element mono minimumByEx f = ofoldl1Ex' go where go x y = case f x y of GT -> y _ -> x {-# INLINE minimumByEx #-} oelem :: Eq (Element mono) => Element mono -> mono -> Bool oelem e = List.elem e . otoList {-# INLINE [0] oelem #-} onotElem :: Eq (Element mono) => Element mono -> mono -> Bool onotElem e = List.notElem e . otoList {-# INLINE [0] onotElem #-}",269,465,2025-11-07 11:52:11.102648,2025-11-07 11:52:11.102648 mono-traversable,unknown,Data.MonoTraversable,MonoTraversable,src/Data/MonoTraversable.hs:990:48-62,"class (MonoFunctor mono, MonoFoldable mono) => MonoTraversable mono where otraverse :: Applicative f => (Element mono -> f (Element mono)) -> mono -> f mono default otraverse :: (Traversable t, mono ~ t a, a ~ Element mono, Applicative f) => (Element mono -> f (Element mono)) -> mono -> f mono otraverse = traverse omapM :: Applicative m => (Element mono -> m (Element mono)) -> mono -> m mono omapM = otraverse {-# INLINE otraverse #-} {-# INLINE omapM #-}",990,1004,2025-11-07 11:52:11.102708,2025-11-07 11:52:11.102708 mono-traversable,unknown,Data.MonoTraversable,MonoPointed,src/Data/MonoTraversable.hs:1126:7-17,"class MonoPointed mono where opoint :: Element mono -> mono default opoint :: (Applicative f, (f a) ~ mono, Element (f a) ~ a) => Element mono -> mono opoint = pure {-# INLINE opoint #-}",1126,1134,2025-11-07 11:52:11.102719,2025-11-07 11:52:11.102719 mono-traversable,unknown,Data.MonoTraversable,MonoComonad,src/Data/MonoTraversable.hs:1259:27-37,"class MonoFunctor mono => MonoComonad mono where oextract :: mono -> Element mono oextend :: (mono -> Element mono) -> mono -> mono",1259,1266,2025-11-07 11:52:11.102726,2025-11-07 11:52:11.102726 mono-traversable,unknown,Data.MonoTraversable,GrowingAppend,src/Data/MonoTraversable.hs:1304:28-40,class MonoFoldable mono => GrowingAppend mono,1304,1304,2025-11-07 11:52:11.102732,2025-11-07 11:52:11.102732 mutable-containers,unknown,Data.Mutable.Class,MutableContainer,src/Data/Mutable/Class.hs:44:7-22,"class MutableContainer c where type MCState c",44,49,2025-11-07 11:52:13.915932,2025-11-07 11:52:13.915932 mutable-containers,unknown,Data.Mutable.Class,MutableRef,src/Data/Mutable/Class.hs:61:29-38,"class MutableContainer c => MutableRef c where type RefElement c newRef :: (PrimMonad m, PrimState m ~ MCState c) => RefElement c -> m c readRef :: (PrimMonad m, PrimState m ~ MCState c) => c -> m (RefElement c) writeRef :: (PrimMonad m, PrimState m ~ MCState c) => c -> RefElement c -> m () modifyRef :: (PrimMonad m, PrimState m ~ MCState c) => c -> (RefElement c -> RefElement c) -> m () modifyRef' :: (PrimMonad m, PrimState m ~ MCState c) => c -> (RefElement c -> RefElement c) -> m ()",61,107,2025-11-07 11:52:13.915944,2025-11-07 11:52:13.915944 mutable-containers,unknown,Data.Mutable.Class,MutableAtomicRef,src/Data/Mutable/Class.hs:149:23-38,"class MutableRef c => MutableAtomicRef c where atomicModifyRef :: (PrimMonad m, PrimState m ~ MCState c) => c -> (RefElement c -> (RefElement c, a)) -> m a atomicModifyRef' :: (PrimMonad m, PrimState m ~ MCState c) => c -> (RefElement c -> (RefElement c, a)) -> m a",149,166,2025-11-07 11:52:13.915956,2025-11-07 11:52:13.915956 mutable-containers,unknown,Data.Mutable.Class,MutableCollection,src/Data/Mutable/Class.hs:181:29-45,"class MutableContainer c => MutableCollection c where type CollElement c newColl :: (PrimMonad m, PrimState m ~ MCState c) => m c",181,191,2025-11-07 11:52:13.915964,2025-11-07 11:52:13.915964 mutable-containers,unknown,Data.Mutable.Class,MutablePopFront,src/Data/Mutable/Class.hs:208:30-44,"class MutableCollection c => MutablePopFront c where popFront :: (PrimMonad m, PrimState m ~ MCState c) => c -> m (Maybe (CollElement c))",208,214,2025-11-07 11:52:13.915970,2025-11-07 11:52:13.915970 mutable-containers,unknown,Data.Mutable.Class,MutablePushFront,src/Data/Mutable/Class.hs:245:30-45,"class MutableCollection c => MutablePushFront c where pushFront :: (PrimMonad m, PrimState m ~ MCState c) => c -> CollElement c -> m ()",245,252,2025-11-07 11:52:13.915976,2025-11-07 11:52:13.915976 mutable-containers,unknown,Data.Mutable.Class,MutablePopBack,src/Data/Mutable/Class.hs:278:30-43,"class MutableCollection c => MutablePopBack c where popBack :: (PrimMonad m, PrimState m ~ MCState c) => c -> m (Maybe (CollElement c))",278,284,2025-11-07 11:52:13.915983,2025-11-07 11:52:13.915983 mutable-containers,unknown,Data.Mutable.Class,MutablePushBack,src/Data/Mutable/Class.hs:315:30-44,"class MutableCollection c => MutablePushBack c where pushBack :: (PrimMonad m, PrimState m ~ MCState c) => c -> CollElement c -> m ()",315,322,2025-11-07 11:52:13.915989,2025-11-07 11:52:13.915989 mwc-random,unknown,System.Random.MWC,Variate,System/Random/MWC.hs:193:7-13,"class Variate a where uniform :: (PrimMonad m) => Gen (PrimState m) -> m a uniformR :: (PrimMonad m) => (a, a) -> Gen (PrimState m) -> m a",193,216,2025-11-07 11:52:15.324327,2025-11-07 11:52:15.324327 mysql-haskell,unknown,Database.MySQL.Query,QueryParam,Database/MySQL/Query.hs:56:7-16,"class QueryParam a where render :: a -> Put",56,57,2025-11-07 11:52:16.840151,2025-11-07 11:52:16.840151 named,unknown,Named.Internal,InjValue,src/Named/Internal.hs:43:7-14,"class InjValue f where injValue :: a -> f a",43,44,2025-11-07 11:52:18.299029,2025-11-07 11:52:18.299029 named,unknown,Named.Internal,WithParam,src/Named/Internal.hs:136:7-15,"class WithParam p fn fn' | p fn -> fn' where with :: Param p -> fn -> fn'",136,150,2025-11-07 11:52:18.299038,2025-11-07 11:52:18.299038 named,unknown,Named.Internal,WithParam',src/Named/Internal.hs:259:7-16,"class WithParam' (ds :: [Type]) p fn fn' | ds p fn -> fn' where withParam :: p -> fn -> fn'",259,260,2025-11-07 11:52:18.299044,2025-11-07 11:52:18.299044 network,unknown,Network.Socket.Types,SocketAddress,Network/Socket/Types.hsc:1000:7-19,"class SocketAddress sa where sizeOfSocketAddress :: sa -> Int peekSocketAddress :: Ptr sa -> IO sa pokeSocketAddress :: Ptr a -> sa -> IO ()",1000,1003,2025-11-07 11:52:24.963377,2025-11-07 11:52:24.963377 network,unknown,Network.Socket.Posix.Cmsg,ControlMessage,Network/Socket/Posix/Cmsg.hsc:107:21-34,"class Storable a => ControlMessage a where controlMessageId :: CmsgId",107,108,2025-11-07 11:52:24.963392,2025-11-07 11:52:24.963392 network-byte-order,unknown,Network.ByteOrder,Readable,Network/ByteOrder.hs:578:7-14,"class Readable a where read8 :: a -> IO Word8 readInt8 :: a -> IO Int ff :: a -> Offset -> IO () remainingSize :: a -> IO Int withCurrentOffSet :: a -> (Buffer -> IO b) -> IO b save :: a -> IO () savingSize :: a -> IO Int goBack :: a -> IO ()",578,594,2025-11-07 11:52:27.710951,2025-11-07 11:52:27.710951 newtype,unknown,Control.Newtype,Newtype,Control/Newtype.hs:76:7-13,"class Newtype n o | n -> o where pack :: o -> n unpack :: n -> o default pack :: Coercible o n => o -> n pack = coerce default unpack :: Coercible n o => n -> o unpack = coerce",76,86,2025-11-07 11:52:31.539163,2025-11-07 11:52:31.539163 newtype-generics,unknown,Control.Newtype.Generics,GNewtype,Control/Newtype/Generics.hs:87:7-14,"class GNewtype n where type GO n :: Type gpack :: GO n -> n p gunpack :: n p -> GO n",87,90,2025-11-07 11:52:32.805876,2025-11-07 11:52:32.805876 newtype-generics,unknown,Control.Newtype.Generics,Newtype,Control/Newtype/Generics.hs:108:7-13,"class Newtype n where type O n :: Type type O n = GO (Rep n) pack :: O n -> n default pack :: (Generic n, GNewtype (Rep n), O n ~ GO (Rep n)) => O n -> n pack = to . gpack unpack :: n -> O n default unpack :: (Generic n, GNewtype (Rep n), O n ~ GO (Rep n)) => n -> O n unpack = gunpack . from",108,118,2025-11-07 11:52:32.805886,2025-11-07 11:52:32.805886 nonempty-containers,unknown,Data.Containers.NonEmpty,HasNonEmpty,src/Data/Containers/NonEmpty.hs:73:7-17,"class HasNonEmpty s where type NE s = t | t -> s {-# MINIMAL (nonEmpty | withNonEmpty), fromNonEmpty, empty #-} nonEmpty :: s -> Maybe (NE s) nonEmpty = withNonEmpty Nothing Just fromNonEmpty :: NE s -> s withNonEmpty :: r -> (NE s -> r) -> s -> r withNonEmpty def f = maybe def f . nonEmpty empty :: s isEmpty :: s -> Bool isEmpty = isNothing . nonEmpty unsafeToNonEmpty :: s -> NE s unsafeToNonEmpty = fromMaybe e . nonEmpty where e = errorWithoutStackTrace ""unsafeToNonEmpty: empty input provided""",73,111,2025-11-07 11:52:34.418038,2025-11-07 11:52:34.418038 nothunks,unknown,NoThunks.Class,NoThunks,src/NoThunks/Class.hs:97:7-14,"class NoThunks a where noThunks :: Context -> a -> IO (Maybe ThunkInfo) noThunks ctxt x = do isThunk <- checkIsThunk x if isThunk then return $ Just ThunkInfo {thunkContext = ctxt'} else wNoThunks ctxt' x where ctxt' :: Context ctxt' = showTypeOf (Proxy @a) : ctxt wNoThunks :: Context -> a -> IO (Maybe ThunkInfo) default wNoThunks :: (Generic a, GWNoThunks '[] (Rep a)) => Context -> a -> IO (Maybe ThunkInfo) wNoThunks ctxt x = gwNoThunks (Proxy @'[]) ctxt fp where fp :: Rep a x !fp = from x showTypeOf :: Proxy a -> String default showTypeOf :: (Generic a, GShowTypeOf (Rep a)) => Proxy a -> String showTypeOf _ = gShowTypeOf (from x) where x :: a x = x",97,172,2025-11-07 11:52:37.313038,2025-11-07 11:52:37.313038 nothunks,unknown,NoThunks.Class,GWNoThunks,src/NoThunks/Class.hs:370:7-16,"class GWNoThunks (a :: [Symbol]) f where gwNoThunks :: proxy a -> Context -> f x -> IO (Maybe ThunkInfo)",370,374,2025-11-07 11:52:37.313057,2025-11-07 11:52:37.313057 nothunks,unknown,NoThunks.Class,GWRecordField,src/NoThunks/Class.hs:435:7-19,"class GWRecordField f (b :: Bool) where gwRecordField :: proxy b -> Context -> f x -> IO (Maybe ThunkInfo)",435,436,2025-11-07 11:52:37.313063,2025-11-07 11:52:37.313063 nothunks,unknown,NoThunks.Class,GShowTypeOf,src/NoThunks/Class.hs:449:7-17,"class GShowTypeOf f where gShowTypeOf :: f x -> String",449,450,2025-11-07 11:52:37.313069,2025-11-07 11:52:37.313069 nothunks,unknown,NoThunks.Class,HasFields,src/NoThunks/Class.hs:765:7-15,class HasFields (s :: [Symbol]) (a :: Type),765,765,2025-11-07 11:52:37.313074,2025-11-07 11:52:37.313074 one,unknown,Generics.OneLiner.Internal,|-,src/Generics/OneLiner/Internal.hs:80:54-55,"class (ks :: [(Type -> Type -> Type) -> Constraint]) |- (k :: (Type -> Type -> Type) -> Constraint) where implies :: Satisfies p ks => (k p => p a b) -> p a b",80,81,2025-11-07 11:52:42.514417,2025-11-07 11:52:42.514417 optics-core,unknown,Data.Tuple.Optics,Field1,src/Data/Tuple/Optics.hs:57:7-12,"class Field1 s t a b | s -> a, t -> b, s b -> t, t a -> s where _1 :: Lens s t a b default _1 :: GPosition 1 s t a b => Lens s t a b _1 = gposition @1 {-# INLINE [1] _1 #-}",57,77,2025-11-07 11:52:44.075302,2025-11-07 11:52:44.075302 optics-core,unknown,Data.Tuple.Optics,Field2,src/Data/Tuple/Optics.hs:124:7-12,"class Field2 s t a b | s -> a, t -> b, s b -> t, t a -> s where _2 :: Lens s t a b default _2 :: GPosition 2 s t a b => Lens s t a b _2 = gposition @2 {-# INLINE [1] _2 #-}",124,139,2025-11-07 11:52:44.075318,2025-11-07 11:52:44.075318 one,unknown,Generics.OneLiner.Internal,ADT_,src/Generics/OneLiner/Internal.hs:112:7-10,"class ADT_ (nullary :: Type -> Type) (unary :: Type -> Type) (ks :: [(Type -> Type -> Type) -> Constraint]) (t :: Type -> Type) (t' :: Type -> Type) where generic_ :: forall c c1 p a b. (Constraints' t t' c c1, Satisfies p ks) => Proxy c -> (forall s s'. c s s' => nullary (p s s')) -> Proxy c1 -> (forall r1 s1 d e. c1 r1 s1 => unary (p d e -> p (r1 d) (s1 e))) -> unary (p a b) -> p (t a) (t' b)",112,119,2025-11-07 11:52:42.514433,2025-11-07 11:52:42.514433 one,unknown,Generics.OneLiner.Internal,AnyType,src/Generics/OneLiner/Internal.hs:258:7-13,class AnyType a b,258,258,2025-11-07 11:52:42.514448,2025-11-07 11:52:42.514448 one,unknown,Generics.OneLiner.Internal,FunConstraints,src/Generics/OneLiner/Internal.hs:287:7-20,"class FunConstraints c t where autoApply :: Applicative f => (forall s. c s => f s) -> f t -> f (FunResult t)",287,288,2025-11-07 11:52:42.514453,2025-11-07 11:52:42.514453 one,unknown,Generics.OneLiner.Classes,GenericRecordProfunctor,src/Generics/OneLiner/Classes.hs:53:78-100,"class (Profunctor p, GenericUnitProfunctor p, GenericProductProfunctor p) => GenericRecordProfunctor p",53,53,2025-11-07 11:52:42.514460,2025-11-07 11:52:42.514460 one,unknown,Generics.OneLiner.Classes,GenericNonEmptyProfunctor,src/Generics/OneLiner/Classes.hs:58:62-86,"class (GenericRecordProfunctor p, GenericSumProfunctor p) => GenericNonEmptyProfunctor p",58,58,2025-11-07 11:52:42.514466,2025-11-07 11:52:42.514466 one,unknown,Generics.OneLiner.Classes,GenericProfunctor,src/Generics/OneLiner/Classes.hs:63:66-82,"class (GenericNonEmptyProfunctor p, GenericEmptyProfunctor p) => GenericProfunctor p",63,63,2025-11-07 11:52:42.514472,2025-11-07 11:52:42.514472 one,unknown,Generics.OneLiner.Classes,Generic1Profunctor,src/Generics/OneLiner/Classes.hs:68:61-78,"class (GenericProfunctor p, GenericConstantProfunctor p) => Generic1Profunctor p",68,68,2025-11-07 11:52:42.514477,2025-11-07 11:52:42.514477 one,unknown,Generics.OneLiner.Classes,GenericUnitProfunctor,src/Generics/OneLiner/Classes.hs:75:23-43,"class Profunctor p => GenericUnitProfunctor p where unit :: p (U1 a) (U1 a')",75,76,2025-11-07 11:52:42.514482,2025-11-07 11:52:42.514482 one,unknown,Generics.OneLiner.Classes,GenericProductProfunctor,src/Generics/OneLiner/Classes.hs:78:23-46,"class Profunctor p => GenericProductProfunctor p where mult :: p (f a) (f' a') -> p (g a) (g' a') -> p ((f :*: g) a) ((f' :*: g') a')",78,79,2025-11-07 11:52:42.514488,2025-11-07 11:52:42.514488 one,unknown,Generics.OneLiner.Classes,GenericSumProfunctor,src/Generics/OneLiner/Classes.hs:81:23-42,"class Profunctor p => GenericSumProfunctor p where plus :: p (f a) (f' a') -> p (g a) (g' a') -> p ((f :+: g) a) ((f' :+: g') a')",81,82,2025-11-07 11:52:42.514494,2025-11-07 11:52:42.514494 one,unknown,Generics.OneLiner.Classes,GenericConstantProfunctor,src/Generics/OneLiner/Classes.hs:84:23-47,"class Profunctor p => GenericConstantProfunctor p where identity :: p c c",84,85,2025-11-07 11:52:42.514500,2025-11-07 11:52:42.514500 one,unknown,Generics.OneLiner.Classes,GenericEmptyProfunctor,src/Generics/OneLiner/Classes.hs:87:23-44,"class Profunctor p => GenericEmptyProfunctor p where zero :: p (V1 a) (V1 a')",87,88,2025-11-07 11:52:42.514505,2025-11-07 11:52:42.514505 one,unknown,Generics.OneLiner.Internal.Unary,D,src/Generics/OneLiner/Internal/Unary.hs:35:23,"class (c a, a ~ b) => D (c :: k -> Constraint) a b",35,35,2025-11-07 11:52:42.514511,2025-11-07 11:52:42.514511 one,unknown,Generics.OneLiner.Internal.Unary,AnyType,src/Generics/OneLiner/Internal/Unary.hs:113:7-13,class AnyType (a :: k),113,113,2025-11-07 11:52:42.514516,2025-11-07 11:52:42.514516 optics-core,unknown,Data.Tuple.Optics,Field3,src/Data/Tuple/Optics.hs:182:7-12,"class Field3 s t a b | s -> a, t -> b, s b -> t, t a -> s where _3 :: Lens s t a b default _3 :: GPosition 3 s t a b => Lens s t a b _3 = gposition @3 {-# INLINE [1] _3 #-}",182,187,2025-11-07 11:52:44.075325,2025-11-07 11:52:44.075325 optics-core,unknown,Data.Tuple.Optics,Field4,src/Data/Tuple/Optics.hs:218:7-12,"class Field4 s t a b | s -> a, t -> b, s b -> t, t a -> s where _4 :: Lens s t a b default _4 :: GPosition 4 s t a b => Lens s t a b _4 = gposition @4 {-# INLINE [1] _4 #-}",218,223,2025-11-07 11:52:44.075332,2025-11-07 11:52:44.075332 optics-core,unknown,Data.Tuple.Optics,Field5,src/Data/Tuple/Optics.hs:250:7-12,"class Field5 s t a b | s -> a, t -> b, s b -> t, t a -> s where _5 :: Lens s t a b default _5 :: GPosition 5 s t a b => Lens s t a b _5 = gposition @5 {-# INLINE [1] _5 #-}",250,255,2025-11-07 11:52:44.075339,2025-11-07 11:52:44.075339 optics-core,unknown,Data.Tuple.Optics,Field6,src/Data/Tuple/Optics.hs:278:7-12,"class Field6 s t a b | s -> a, t -> b, s b -> t, t a -> s where _6 :: Lens s t a b default _6 :: GPosition 6 s t a b => Lens s t a b _6 = gposition @6 {-# INLINE [1] _6 #-}",278,283,2025-11-07 11:52:44.075345,2025-11-07 11:52:44.075345 optics-core,unknown,Data.Tuple.Optics,Field7,src/Data/Tuple/Optics.hs:302:7-12,"class Field7 s t a b | s -> a, t -> b, s b -> t, t a -> s where _7 :: Lens s t a b default _7 :: GPosition 7 s t a b => Lens s t a b _7 = gposition @7 {-# INLINE [1] _7 #-}",302,307,2025-11-07 11:52:44.075352,2025-11-07 11:52:44.075352 optics-core,unknown,Data.Tuple.Optics,Field8,src/Data/Tuple/Optics.hs:322:7-12,"class Field8 s t a b | s -> a, t -> b, s b -> t, t a -> s where _8 :: Lens s t a b default _8 :: GPosition 8 s t a b => Lens s t a b _8 = gposition @8 {-# INLINE [1] _8 #-}",322,327,2025-11-07 11:52:44.075358,2025-11-07 11:52:44.075358 optics-core,unknown,Data.Tuple.Optics,Field9,src/Data/Tuple/Optics.hs:338:7-12,"class Field9 s t a b | s -> a, t -> b, s b -> t, t a -> s where _9 :: Lens s t a b default _9 :: GPosition 9 s t a b => Lens s t a b _9 = gposition @9 {-# INLINE [1] _9 #-}",338,343,2025-11-07 11:52:44.075365,2025-11-07 11:52:44.075365 optics-core,unknown,Optics.Generic,GField,src/Optics/Generic.hs:120:7-12,"class GField (name :: Symbol) s t a b | name s -> t a b, name t -> s a b where gfield :: Lens s t a b",120,122,2025-11-07 11:52:44.075372,2025-11-07 11:52:44.075372 optics-core,unknown,Optics.Generic,GAffineField,src/Optics/Generic.hs:181:7-18,"class GAffineField (name :: Symbol) s t a b | name s -> t a b, name t -> s a b where gafield :: AffineTraversal s t a b",181,183,2025-11-07 11:52:44.075380,2025-11-07 11:52:44.075380 optics-core,unknown,Optics.Generic,GPosition,src/Optics/Generic.hs:242:7-15,"class GPosition (n :: Nat) s t a b | n s -> t a b, n t -> s a b where gposition :: Lens s t a b",242,244,2025-11-07 11:52:44.075386,2025-11-07 11:52:44.075386 optics-core,unknown,Optics.Generic,GConstructor,src/Optics/Generic.hs:312:7-18,"class GConstructor (name :: Symbol) s t a b | name s -> t a b, name t -> s a b where gconstructor :: Prism s t a b",312,314,2025-11-07 11:52:44.075393,2025-11-07 11:52:44.075393 optics-core,unknown,Optics.Generic,GPlate,src/Optics/Generic.hs:360:7-12,"class GPlate a s where gplate :: Traversal' s a",360,361,2025-11-07 11:52:44.075399,2025-11-07 11:52:44.075399 optics-core,unknown,Optics.Arrow,ArrowOptic,src/Optics/Arrow.hs:68:20-29,"class Arrow arr => ArrowOptic k arr where overA :: Optic k is s t a b -> arr a b -> arr s t",68,70,2025-11-07 11:52:44.075404,2025-11-07 11:52:44.075404 optics-core,unknown,Optics.ReadOnly,ToReadOnly,src/Optics/ReadOnly.hs:20:7-16,"class ToReadOnly k s t a b where type ReadOnlyOptic k :: OpticKind getting :: Optic k is s t a b -> Optic' (ReadOnlyOptic k) is s a",20,41,2025-11-07 11:52:44.075410,2025-11-07 11:52:44.075410 optics-core,unknown,Optics.Mapping,MappingOptic,src/Optics/Mapping.hs:27:7-18,"class MappingOptic k f g s t a b where type MappedOptic k mapping :: ""mapping"" `AcceptsEmptyIndices` is => Optic k is s t a b -> Optic (MappedOptic k) is (f s) (g t) (f a) (g b)",27,44,2025-11-07 11:52:44.075419,2025-11-07 11:52:44.075419 optics-core,unknown,Optics.Re,ReversibleOptic,src/Optics/Re.hs:40:7-21,"class ReversibleOptic k where type ReversedOptic k = r | r -> k re :: ""re"" `AcceptsEmptyIndices` is => Optic k is s t a b -> Optic (ReversedOptic k) is b a t s",40,61,2025-11-07 11:52:44.075425,2025-11-07 11:52:44.075425 optics-core,unknown,Optics.Iso,Swapped,src/Optics/Iso.hs:348:22-28,"class Bifunctor p => Swapped p where swapped :: Iso (p a b) (p c d) (p b a) (p d c)",348,360,2025-11-07 11:52:44.075432,2025-11-07 11:52:44.075432 optics-core,unknown,Optics.Label,LabelOptic,src/Optics/Label.hs:489:7-16,"class LabelOptic (name :: Symbol) k s t a b | name s -> k a, name t -> k b, name s b -> t, name t a -> s where labelOptic :: Optic k NoIx s t a b",489,495,2025-11-07 11:52:44.075437,2025-11-07 11:52:44.075437 optics-core,unknown,Optics.Label,GenericLabelOptics,src/Optics/Label.hs:579:20-37,"class Generic a => GenericLabelOptics a where type HasGenericLabelOptics a :: Bool type HasGenericLabelOptics a = 'True",579,581,2025-11-07 11:52:44.075446,2025-11-07 11:52:44.075446 optics-core,unknown,Optics.Label,GenericOptic,src/Optics/Label.hs:585:7-18,"class GenericOptic (repDefined :: Bool) name k s t a b where genericOptic :: Optic k NoIx s t a b",585,586,2025-11-07 11:52:44.075452,2025-11-07 11:52:44.075452 optics-core,unknown,Optics.Empty.Core,AsEmpty,src/Optics/Empty/Core.hs:54:7-13,"class AsEmpty a where _Empty :: Prism' a () default _Empty :: (Monoid a, Eq a) => Prism' a () _Empty = only mempty {-# INLINE _Empty #-}",54,62,2025-11-07 11:52:44.075458,2025-11-07 11:52:44.075458 optics-core,unknown,Optics.Each.Core,Each,src/Optics/Each/Core.hs:44:7-10,"class Each i s t a b | s -> i a, t -> i b, s b -> t, t a -> s where each :: IxTraversal i s t a b default each :: (TraversableWithIndex i g, s ~ g a, t ~ g b) => IxTraversal i s t a b each = itraversed {-# INLINE [1] each #-}",44,51,2025-11-07 11:52:44.075464,2025-11-07 11:52:44.075464 optics-core,unknown,Optics.Internal.Generic,GFieldImpl,src/Optics/Internal/Generic.hs:102:7-16,"class GFieldImpl (name :: Symbol) s t a b | name s -> a where gfieldImpl :: Lens s t a b",102,107,2025-11-07 11:52:44.075471,2025-11-07 11:52:44.075471 optics-core,unknown,Optics.Internal.Generic,GSetFieldSum,src/Optics/Internal/Generic.hs:121:7-18,"class GSetFieldSum (path :: PathTree Symbol) g h b | path h -> b, path g b -> h where gsetFieldSum :: g x -> b -> h x",121,123,2025-11-07 11:52:44.075477,2025-11-07 11:52:44.075477 optics-core,unknown,Optics.Internal.Generic,GSetFieldProd,src/Optics/Internal/Generic.hs:152:7-19,"class GSetFieldProd (path :: [Path]) g h b | path h -> b, path g b -> h where gsetFieldProd :: g x -> b -> h x",152,154,2025-11-07 11:52:44.075538,2025-11-07 11:52:44.075538 optics-core,unknown,Optics.Internal.Generic,GAffineFieldImpl,src/Optics/Internal/Generic.hs:190:7-22,"class GAffineFieldImpl (repDefined :: Bool) (name :: Symbol) s t a b | name s -> a where gafieldImpl :: AffineTraversal s t a b",190,197,2025-11-07 11:52:44.075546,2025-11-07 11:52:44.075546 optics-core,unknown,Optics.Internal.Generic,GAffineFieldSum,src/Optics/Internal/Generic.hs:218:7-21,"class GAffineFieldSum (path :: PathTree Symbol) g h a b where gafieldSum :: AffineTraversalVL (g x) (h x) a b",218,219,2025-11-07 11:52:44.075552,2025-11-07 11:52:44.075552 optics-core,unknown,Optics.Internal.Generic,GAffineFieldMaybe,src/Optics/Internal/Generic.hs:239:7-23,"class GAffineFieldMaybe (epath :: Either Symbol [Path]) g h a b where gafieldMaybe :: AffineTraversalVL (g x) (h x) a b",239,240,2025-11-07 11:52:44.075558,2025-11-07 11:52:44.075558 optics-core,unknown,Optics.Internal.Generic,GFieldProd,src/Optics/Internal/Generic.hs:254:7-16,"class GFieldProd (path :: [Path]) g h a b | path g -> a, path h -> b, path g b -> h, path h a -> g where gfieldProd :: LensVL (g x) (h x) a b",254,258,2025-11-07 11:52:44.075564,2025-11-07 11:52:44.075564 optics-core,unknown,Optics.Internal.Generic,GPositionImpl,src/Optics/Internal/Generic.hs:295:7-19,"class GPositionImpl (repDefined :: Bool) (n :: Nat) s t a b | n s -> a where gpositionImpl :: Lens s t a b",295,302,2025-11-07 11:52:44.075571,2025-11-07 11:52:44.075571 optics-core,unknown,Optics.Internal.Generic,GPositionSum,src/Optics/Internal/Generic.hs:320:7-18,"class GPositionSum (path :: PathTree (Nat, Nat)) g h a b | path g -> a, path h -> b, path g b -> h, path h a -> g where gpositionSum :: LensVL (g x) (h x) a b",320,324,2025-11-07 11:52:44.075577,2025-11-07 11:52:44.075577 optics-core,unknown,Optics.Internal.Generic,GConstructorImpl,src/Optics/Internal/Generic.hs:362:7-22,"class GConstructorImpl (repDefined :: Bool) (name :: Symbol) s t a b | name s -> a where gconstructorImpl :: Prism s t a b",362,369,2025-11-07 11:52:44.075586,2025-11-07 11:52:44.075586 optics-core,unknown,Optics.Internal.Generic,GConstructorSum,src/Optics/Internal/Generic.hs:388:7-21,"class GConstructorSum (path :: [Path]) g h a b | path g -> a, path h -> b, path g b -> h, path h a -> g where gconstructorSum :: Prism (g x) (h x) a b",388,392,2025-11-07 11:52:44.075595,2025-11-07 11:52:44.075595 optics-core,unknown,Optics.Internal.Generic,GConstructorTuple,src/Optics/Internal/Generic.hs:430:7-23,"class GConstructorTuple g h a b | g -> a, h -> b, g b -> h, h a -> g where gconstructorTuple :: Iso (g x) (h x) a b",430,434,2025-11-07 11:52:44.075604,2025-11-07 11:52:44.075604 optics-core,unknown,Optics.Internal.Generic,GPlateImpl,src/Optics/Internal/Generic.hs:514:7-16,"class GPlateImpl g a where gplateImpl :: TraversalVL' (g x) a",514,515,2025-11-07 11:52:44.075610,2025-11-07 11:52:44.075610 optics-core,unknown,Optics.Internal.Generic,GPlateInner,src/Optics/Internal/Generic.hs:545:7-17,"class GPlateInner (repDefined :: Bool) s a where gplateInner :: TraversalVL' s a",545,546,2025-11-07 11:52:44.075615,2025-11-07 11:52:44.075615 optics-core,unknown,Optics.Internal.Indexed,AcceptsEmptyIndices,src/Optics/Internal/Indexed.hs:19:20-38,class is ~ NoIx => AcceptsEmptyIndices (f :: Symbol) (is :: IxList),19,19,2025-11-07 11:52:44.075621,2025-11-07 11:52:44.075621 optics-core,unknown,Optics.Internal.Indexed,NonEmptyIndices,src/Optics/Internal/Indexed.hs:31:7-21,class NonEmptyIndices (is :: IxList),31,31,2025-11-07 11:52:44.075626,2025-11-07 11:52:44.075626 optics-core,unknown,Optics.Internal.Indexed,HasSingleIndex,src/Optics/Internal/Indexed.hs:43:20-33,class is ~ '[i] => HasSingleIndex (is :: IxList) (i :: Type),43,43,2025-11-07 11:52:44.075631,2025-11-07 11:52:44.075631 optics-core,unknown,Optics.Internal.Magic,Dysfunctional,src/Optics/Internal/Magic.hs:11:7-19,"class Dysfunctional field k s t a b | field s -> k t a b, field t -> k s a b",11,12,2025-11-07 11:52:44.075637,2025-11-07 11:52:44.075637 optics-core,unknown,Optics.Internal.Magic,TypeInferenceLoop,src/Optics/Internal/Magic.hs:25:7-23,"class TypeInferenceLoop msg1 msg2 msg3 field k s t a b | field s -> k t a b, field t -> k s a b",25,26,2025-11-07 11:52:44.075643,2025-11-07 11:52:44.075643 optics-core,unknown,Optics.Internal.Bi,Bifunctor,src/Optics/Internal/Bi.hs:15:7-15,"class Bifunctor p where bimap :: (a -> b) -> (c -> d) -> p i a c -> p i b d first :: (a -> b) -> p i a c -> p i b c second :: (c -> d) -> p i a c -> p i a d",15,18,2025-11-07 11:52:44.075650,2025-11-07 11:52:44.075650 optics-core,unknown,Optics.Internal.Bi,Bicontravariant,src/Optics/Internal/Bi.hs:26:7-21,"class Bicontravariant p where contrabimap :: (b -> a) -> (d -> c) -> p i a c -> p i b d contrafirst :: (b -> a) -> p i a c -> p i b c contrasecond :: (c -> b) -> p i a b -> p i a c",26,29,2025-11-07 11:52:44.075656,2025-11-07 11:52:44.075656 optics-core,unknown,Optics.Internal.Optic.Subtyping,Is,src/Optics/Internal/Optic/Subtyping.hs:26:7-8,"class Is k l where implies :: (Constraints k p => r) -> (Constraints l p => r)",26,28,2025-11-07 11:52:44.075662,2025-11-07 11:52:44.075662 optics-core,unknown,Optics.Internal.Optic.Subtyping,JoinKinds,src/Optics/Internal/Optic/Subtyping.hs:156:7-15,"class JoinKinds k l m | k l -> m where joinKinds :: ((Constraints k p, Constraints l p) => r) -> (Constraints m p => r)",156,157,2025-11-07 11:52:44.075668,2025-11-07 11:52:44.075668 optics-core,unknown,Optics.Internal.Optic.TypeLevel,CurryCompose,src/Optics/Internal/Optic/TypeLevel.hs:82:7-18,"class CurryCompose xs where composeN :: (i -> j) -> Curry xs i -> Curry xs j",82,86,2025-11-07 11:52:44.075674,2025-11-07 11:52:44.075674 optics-core,unknown,Optics.Internal.Optic.TypeLevel,AppendIndices,src/Optics/Internal/Optic/TypeLevel.hs:111:7-19,"class AppendIndices xs ys ks | xs ys -> ks where appendIndices :: IxEq i (Curry xs (Curry ys i)) (Curry ks i)",111,112,2025-11-07 11:52:44.075679,2025-11-07 11:52:44.075679 optics-core,unknown,Optics.Internal.Optic.TypeLevel,HasShapeOf,src/Optics/Internal/Optic/TypeLevel.hs:178:7-16,class HasShapeOf (a :: k) (b :: k),178,178,2025-11-07 11:52:44.075685,2025-11-07 11:52:44.075685 optics-core,unknown,Optics.Indexed.Core,IxOptic,src/Optics/Indexed/Core.hs:185:7-13,"class IxOptic k s t a b where noIx :: NonEmptyIndices is => Optic k is s t a b -> Optic k NoIx s t a b",185,190,2025-11-07 11:52:44.075690,2025-11-07 11:52:44.075690 optics-core,unknown,Optics.At.Core,Contains,src/Optics/At/Core.hs:102:7-14,"class Contains m where contains :: Index m -> Lens' m Bool",102,112,2025-11-07 11:52:44.075696,2025-11-07 11:52:44.075696 optics-core,unknown,Optics.At.Core,Ixed,src/Optics/At/Core.hs:132:7-10,"class Ixed m where type IxKind (m :: Type) :: OpticKind type IxKind m = An_AffineTraversal ix :: Index m -> Optic' (IxKind m) NoIx m (IxValue m) default ix :: (At m, IxKind m ~ An_AffineTraversal) => Index m -> Optic' (IxKind m) NoIx m (IxValue m) ix = ixAt {-# INLINE ix #-}",132,159,2025-11-07 11:52:44.075701,2025-11-07 11:52:44.075701 optics-core,unknown,Optics.At.Core,At,src/Optics/At/Core.hs:383:50-51,"class (Ixed m, IxKind m ~ An_AffineTraversal) => At m where at :: Index m -> Lens' m (Maybe (IxValue m))",383,397,2025-11-07 11:52:44.075724,2025-11-07 11:52:44.075724 optics-core,unknown,Optics.Cons.Core,Cons,src/Optics/Cons/Core.hs:74:7-10,"class Cons s t a b | s -> a, t -> b, s b -> t, t a -> s where _Cons :: Prism s t (a, s) (b, t)",74,85,2025-11-07 11:52:44.075730,2025-11-07 11:52:44.075730 optics-core,unknown,Optics.Cons.Core,Snoc,src/Optics/Cons/Core.hs:221:7-10,"class Snoc s t a b | s -> a, t -> b, s b -> t, t a -> s where _Snoc :: Prism s t (s, a) (t, b)",221,222,2025-11-07 11:52:44.075736,2025-11-07 11:52:44.075736 optics-extra,unknown,Data.ByteString.Optics,IsByteString,src/Data/ByteString/Optics.hs:19:7-18,"class IsByteString t where packedBytes :: Iso' [Word8] t packedChars :: Iso' String t bytes :: IxTraversal' Int64 t Word8 chars :: IxTraversal' Int64 t Char",19,78,2025-11-07 11:52:45.572543,2025-11-07 11:52:45.572543 optics-extra,unknown,Data.Text.Optics,IsText,src/Data/Text/Optics.hs:29:7-12,"class IsText t where packed :: Iso' String t builder :: Iso' t B.Builder text :: IxTraversal' Int t Char text = unpacked % itraversed {-# INLINE text #-}",29,54,2025-11-07 11:52:45.572558,2025-11-07 11:52:45.572558 optics-extra,unknown,Optics.Zoom,Zoom,src/Optics/Zoom.hs:82:8-11,"class (MonadState s m, MonadState t n) => Zoom m n s t | m -> s, n -> t, m t -> n, n s -> m where zoom :: Is k A_Lens => Optic' k is t s -> m c -> n c zoomMaybe :: Is k An_AffineTraversal => Optic' k is t s -> m c -> n (Maybe c) zoomMany :: (Is k A_Traversal, Monoid c) => Optic' k is t s -> m c -> n c",80,99,2025-11-07 11:52:45.572566,2025-11-07 11:52:45.572566 optics-extra,unknown,Optics.Zoom,Magnify,src/Optics/Zoom.hs:239:8-14,"class (MonadReader b m, MonadReader a n) => Magnify m n b a | m -> b, n -> a, m a -> n, n b -> m where magnify :: Is k A_Getter => Optic' k is a b -> m c -> n c magnifyMaybe :: Is k An_AffineFold => Optic' k is a b -> m c -> n (Maybe c)",237,250,2025-11-07 11:52:45.572575,2025-11-07 11:52:45.572575 optics-extra,unknown,Optics.Zoom,MagnifyMany,src/Optics/Zoom.hs:259:8-18,"class (MonadReader b m, MonadReader a n, Magnify m n b a) => MagnifyMany m n b a | m -> b, n -> a, m a -> n, n b -> m where magnifyMany :: (Is k A_Fold, Monoid c) => Optic' k is a b -> m c -> n c",257,264,2025-11-07 11:52:45.572583,2025-11-07 11:52:45.572583 optics-extra,unknown,Optics.Passthrough,PermeableOptic,src/Optics/Passthrough.hs:10:48-61,"class (Is k A_Traversal, ViewableOptic k r) => PermeableOptic k r where passthrough :: Optic k is s t a b -> (a -> (r, b)) -> s -> (ViewResult k r, t)",10,16,2025-11-07 11:52:45.572591,2025-11-07 11:52:45.572591 optics-extra,unknown,Optics.View,ViewableOptic,src/Optics/View.hs:29:7-19,"class ViewableOptic k r where type ViewResult k r :: Type gview :: MonadReader s m => Optic' k is s r -> m (ViewResult k r) gviews :: MonadReader s m => Optic' k is s a -> (a -> r) -> m (ViewResult k r)",29,39,2025-11-07 11:52:45.572598,2025-11-07 11:52:45.572598 optparse-applicative,unknown,Options.Applicative.Internal,MonadP,src/Options/Applicative/Internal.hs:40:39-44,"class (Alternative m, MonadPlus m) => MonadP m where enterContext :: String -> ParserInfo a -> m () exitContext :: m () getPrefs :: m ParserPrefs missingArgP :: ParseError -> Completer -> m a errorP :: ParseError -> m a exitP :: IsCmdStart -> ArgPolicy -> Parser b -> Maybe a -> m a",40,47,2025-11-07 11:52:47.033070,2025-11-07 11:52:47.033070 optparse-applicative,unknown,Options.Applicative.Builder.Internal,HasName,src/Options/Applicative/Builder/Internal.hs:51:7-13,"class HasName f where name :: OptName -> f a -> f a",51,52,2025-11-07 11:52:47.033089,2025-11-07 11:52:47.033089 optparse-applicative,unknown,Options.Applicative.Builder.Internal,HasCompleter,src/Options/Applicative/Builder/Internal.hs:60:7-18,"class HasCompleter f where modCompleter :: (Completer -> Completer) -> f a -> f a",60,61,2025-11-07 11:52:47.033096,2025-11-07 11:52:47.033096 optparse-applicative,unknown,Options.Applicative.Builder.Internal,HasValue,src/Options/Applicative/Builder/Internal.hs:69:7-14,"class HasValue f where hasValueDummy :: f a -> ()",69,71,2025-11-07 11:52:47.033102,2025-11-07 11:52:47.033102 optparse-applicative,unknown,Options.Applicative.Builder.Internal,HasMetavar,src/Options/Applicative/Builder/Internal.hs:77:7-16,"class HasMetavar f where hasMetavarDummy :: f a -> ()",77,78,2025-11-07 11:52:47.033108,2025-11-07 11:52:47.033108 parsers,unknown,Text.Parser.LookAhead,LookAheadParsing,src/Text/Parser/LookAhead.hs:59:20-35,"class Parsing m => LookAheadParsing m where lookAhead :: m a -> m a",59,61,2025-11-07 11:52:52.631326,2025-11-07 11:52:52.631326 parsers,unknown,Text.Parser.Token,TokenParsing,src/Text/Parser/Token.hs:367:24-35,"class CharParsing m => TokenParsing m where someSpace :: m () someSpace = skipSome (satisfy isSpace) {-# INLINE someSpace #-} nesting :: m a -> m a nesting = id {-# INLINE nesting #-} semi :: m Char semi = token (satisfy (';' ==) "";"") {-# INLINE semi #-} highlight :: Highlight -> m a -> m a highlight _ a = a {-# INLINE highlight #-} token :: m a -> m a token p = p <* (someSpace <|> pure ())",367,410,2025-11-07 11:52:52.631343,2025-11-07 11:52:52.631343 parsers,unknown,Text.Parser.Char,CharParsing,src/Text/Parser/Char.hs:187:20-30,"class Parsing m => CharParsing m where satisfy :: (Char -> Bool) -> m Char default satisfy :: (MonadTrans t, CharParsing n, Monad n, m ~ t n) => (Char -> Bool) -> m Char satisfy = lift . satisfy char :: Char -> m Char char c = satisfy (c ==) show [c] {-# INLINE char #-} notChar :: Char -> m Char notChar c = satisfy (c /=) {-# INLINE notChar #-} anyChar :: m Char anyChar = satisfy (const True) {-# INLINE anyChar #-} string :: String -> m String string s = s <$ try (traverse_ char s) show s {-# INLINE string #-} text :: Text -> m Text text t = t <$ string (Text.unpack t) {-# INLINE text #-}",187,235,2025-11-07 11:52:52.631356,2025-11-07 11:52:52.631356 parsers,unknown,Text.Parser.Combinators,Parsing,src/Text/Parser/Combinators.hs:281:24-30,"class Alternative m => Parsing m where try :: m a -> m a () :: m a -> String -> m a skipMany :: m a -> m () skipMany p = void (many p) {-# INLINE skipMany #-} skipSome :: m a -> m () skipSome p = p *> skipMany p {-# INLINE skipSome #-} unexpected :: String -> m a default unexpected :: (MonadTrans t, Monad n, Parsing n, m ~ t n) => String -> m a unexpected = lift . unexpected {-# INLINE unexpected #-} eof :: m () default eof :: (MonadTrans t, Monad n, Parsing n, m ~ t n) => m () eof = lift eof {-# INLINE eof #-} notFollowedBy :: Show a => m a -> m ()",281,330,2025-11-07 11:52:52.631368,2025-11-07 11:52:52.631368 pcg-random,unknown,System.Random.PCG.Class,Generator,src/System/Random/PCG/Class.hs:62:18-26,"class Monad m => Generator g m where uniform1 :: (Word32 -> a) -> g -> m a uniform2 :: (Word32 -> Word32 -> a) -> g -> m a uniform1B :: Integral a => (Word32 -> a) -> Word32 -> g -> m a",62,65,2025-11-07 11:52:55.323941,2025-11-07 11:52:55.323941 pcg-random,unknown,System.Random.PCG.Class,Variate,src/System/Random/PCG/Class.hs:67:7-13,"class Variate a where uniform :: Generator g m => g -> m a uniformR :: Generator g m => (a, a) -> g -> m a uniformB :: Generator g m => a -> g -> m a",67,87,2025-11-07 11:52:55.323955,2025-11-07 11:52:55.323955 pcre-heavy,unknown,Text.Regex.PCRE.Heavy,RegexReplacement,library/Text/Regex/PCRE/Heavy.hs:150:7-22,"class RegexReplacement a where performReplacement :: SBS -> [SBS] -> a -> SBS",150,151,2025-11-07 11:52:56.617870,2025-11-07 11:52:56.617870 pointed,unknown,Data.Copointed,Copointed,src/Data/Copointed.hs:66:7-15,"class Copointed p where copoint :: p a -> a",66,67,2025-11-07 11:53:02.052480,2025-11-07 11:53:02.052480 pointed,unknown,Data.Pointed,Pointed,src/Data/Pointed.hs:96:7-13,"class Pointed p where point :: a -> p a",96,97,2025-11-07 11:53:02.052491,2025-11-07 11:53:02.052491 postgresql-libpq,unknown,Database.PostgreSQL.LibPQ.Enums,ToCInt,src/Database/PostgreSQL/LibPQ/Enums.hsc:14:7-12,"class ToCInt a where toCInt :: a -> CInt",14,15,2025-11-07 11:53:03.406647,2025-11-07 11:53:03.406647 postgresql-libpq,unknown,Database.PostgreSQL.LibPQ.Enums,FromCInt,src/Database/PostgreSQL/LibPQ/Enums.hsc:17:7-14,"class FromCInt a where fromCInt :: CInt -> Maybe a",17,18,2025-11-07 11:53:03.406664,2025-11-07 11:53:03.406664 postgresql-simple,unknown,Database.PostgreSQL.Simple.FromField.hs-boot.class_code.json,FromField,src/Database/PostgreSQL/Simple/FromField.hs-boot:6:7-15,class FromField a,6,6,2025-11-07 11:53:04.928835,2025-11-07 11:53:04.928835 postgresql-simple,unknown,Database.PostgreSQL.Simple.ToField.hs-boot.class_code.json,ToField,src/Database/PostgreSQL/Simple/ToField.hs-boot:28:7-13,class ToField a,28,28,2025-11-07 11:53:04.928852,2025-11-07 11:53:04.928852 postgresql-simple,unknown,Database.PostgreSQL.Simple.FromRow.hs-boot.class_code.json,FromRow,src/Database/PostgreSQL/Simple/FromRow.hs-boot:6:7-13,class FromRow a,6,6,2025-11-07 11:53:04.928860,2025-11-07 11:53:04.928860 postgresql-simple,unknown,Database.PostgreSQL.Simple.ToField,ToField,src/Database/PostgreSQL/Simple/ToField.hs:99:7-13,"class ToField a where toField :: a -> Action",99,100,2025-11-07 11:53:04.928866,2025-11-07 11:53:04.928866 postgresql-simple,unknown,Database.PostgreSQL.Simple.ToRow.hs-boot.class_code.json,ToRow,src/Database/PostgreSQL/Simple/ToRow.hs-boot:10:7-11,"class ToRow a where toRow :: a -> [Action] default toRow :: (Generic a, GToRow (Rep a)) => a -> [Action] toRow = gtoRow . from",10,13,2025-11-07 11:53:04.928872,2025-11-07 11:53:04.928872 postgresql-simple,unknown,Database.PostgreSQL.Simple.ToRow.hs-boot.class_code.json,GToRow,src/Database/PostgreSQL/Simple/ToRow.hs-boot:15:7-12,"class GToRow f where gtoRow :: f p -> [Action]",15,16,2025-11-07 11:53:04.928881,2025-11-07 11:53:04.928881 postgresql-simple,unknown,Database.PostgreSQL.Simple.FromField,FromField,src/Database/PostgreSQL/Simple/FromField.hs:197:7-15,"class FromField a where fromField :: FieldParser a",197,198,2025-11-07 11:53:04.928888,2025-11-07 11:53:04.928888 postgresql-simple,unknown,Database.PostgreSQL.Simple.ToRow,ToRow,src/Database/PostgreSQL/Simple/ToRow.hs:49:7-11,"class ToRow a where toRow :: a -> [Action] default toRow :: (Generic a, GToRow (Rep a)) => a -> [Action] toRow = gtoRow . from",49,52,2025-11-07 11:53:04.928893,2025-11-07 11:53:04.928893 postgresql-simple,unknown,Database.PostgreSQL.Simple.ToRow,GToRow,src/Database/PostgreSQL/Simple/ToRow.hs:206:7-12,"class GToRow f where gtoRow :: f p -> [Action]",206,207,2025-11-07 11:53:04.928900,2025-11-07 11:53:04.928900 postgresql-simple,unknown,Database.PostgreSQL.Simple.FromRow,FromRow,src/Database/PostgreSQL/Simple/FromRow.hs:92:7-13,"class FromRow a where fromRow :: RowParser a default fromRow :: (Generic a, GFromRow (Rep a)) => RowParser a fromRow = to <$> gfromRow",92,95,2025-11-07 11:53:04.928905,2025-11-07 11:53:04.928905 postgresql-simple,unknown,Database.PostgreSQL.Simple.FromRow,GFromRow,src/Database/PostgreSQL/Simple/FromRow.hs:474:7-14,"class GFromRow f where gfromRow :: RowParser (f p)",474,475,2025-11-07 11:53:04.928913,2025-11-07 11:53:04.928913 postgresql-simple,unknown,Database.PostgreSQL.Simple.HStore.Implementation,ToHStore,src/Database/PostgreSQL/Simple/HStore/Implementation.hs:41:7-14,"class ToHStore a where toHStore :: a -> HStoreBuilder",41,42,2025-11-07 11:53:04.928919,2025-11-07 11:53:04.928919 postgresql-simple,unknown,Database.PostgreSQL.Simple.HStore.Implementation,ToHStoreText,src/Database/PostgreSQL/Simple/HStore/Implementation.hs:76:7-18,"class ToHStoreText a where toHStoreText :: a -> HStoreText",76,77,2025-11-07 11:53:04.928927,2025-11-07 11:53:04.928927 pqueue,unknown,BinomialQueue.Internals,NFRank,src/BinomialQueue/Internals.hs:693:7-12,"class NFRank rk where rnfRk :: NFData a => rk a -> ()",693,694,2025-11-07 11:53:06.587590,2025-11-07 11:53:06.587590 pqueue,unknown,Data.PQueue.Prio.Internals,NFRank,src/Data/PQueue/Prio/Internals.hs:758:7-12,"class NFRank rk where rnfRk :: (NFData k, NFData a) => rk k a -> ()",758,759,2025-11-07 11:53:06.587605,2025-11-07 11:53:06.587605 record-dot-preprocessor,unknown,Compat,WithoutLoc,plugin/Compat.hs:58:7-16,"class WithoutLoc a b | b -> a where noL :: a -> b",58,63,2025-11-07 11:53:53.776293,2025-11-07 11:53:53.776293 pqueue,unknown,Data.PQueue.Internals.Foldable,Foldr,src/Data/PQueue/Internals/Foldable.hs:16:7-11,"class Foldr t where foldr_ :: (a -> b -> b) -> b -> t a -> b",16,17,2025-11-07 11:53:06.587613,2025-11-07 11:53:06.587613 pqueue,unknown,Data.PQueue.Internals.Foldable,IFoldr,src/Data/PQueue/Internals/Foldable.hs:19:7-12,"class IFoldr t where foldrWithKey_ :: (k -> a -> b -> b) -> b -> t k a -> b",19,20,2025-11-07 11:53:06.587619,2025-11-07 11:53:06.587619 pqueue,unknown,Data.PQueue.Internals.Foldable,Foldl,src/Data/PQueue/Internals/Foldable.hs:22:7-11,"class Foldl t where foldl_ :: (b -> a -> b) -> b -> t a -> b",22,23,2025-11-07 11:53:06.587627,2025-11-07 11:53:06.587627 pqueue,unknown,Data.PQueue.Internals.Foldable,IFoldl,src/Data/PQueue/Internals/Foldable.hs:25:7-12,"class IFoldl t where foldlWithKey_ :: (b -> k -> a -> b) -> b -> t k a -> b",25,26,2025-11-07 11:53:06.587633,2025-11-07 11:53:06.587633 pqueue,unknown,Data.PQueue.Internals.Foldable,FoldMap,src/Data/PQueue/Internals/Foldable.hs:28:7-13,"class FoldMap t where foldMap_ :: Monoid m => (a -> m) -> t a -> m",28,29,2025-11-07 11:53:06.587638,2025-11-07 11:53:06.587638 pqueue,unknown,Data.PQueue.Internals.Foldable,IFoldMap,src/Data/PQueue/Internals/Foldable.hs:31:7-14,"class IFoldMap t where foldMapWithKey_ :: Monoid m => (k -> a -> m) -> t k a -> m",31,32,2025-11-07 11:53:06.587644,2025-11-07 11:53:06.587644 pqueue,unknown,Data.PQueue.Internals.Foldable,Foldl',src/Data/PQueue/Internals/Foldable.hs:34:7-12,"class Foldl' t where foldl'_ :: (b -> a -> b) -> b -> t a -> b",34,35,2025-11-07 11:53:06.587650,2025-11-07 11:53:06.587650 pqueue,unknown,Data.PQueue.Internals.Foldable,IFoldl',src/Data/PQueue/Internals/Foldable.hs:37:7-13,"class IFoldl' t where foldlWithKey'_ :: (b -> k -> a -> b) -> b -> t k a -> b",37,38,2025-11-07 11:53:06.587655,2025-11-07 11:53:06.587655 pretty-show,unknown,Text.Show.PrettyVal,PrettyVal,Text/Show/PrettyVal.hs:25:7-15,"class PrettyVal a where prettyVal :: a -> Value listValue :: [a] -> Value default prettyVal :: (GDump (Rep a), Generic a) => a -> Value prettyVal = oneVal . gdump . from default listValue :: [a] -> Value listValue = List . map prettyVal",25,35,2025-11-07 11:53:09.592934,2025-11-07 11:53:09.592934 pretty-show,unknown,Text.Show.PrettyVal,GDump,Text/Show/PrettyVal.hs:38:7-11,"class GDump f where gdump :: f a -> [(Name, Value)]",38,39,2025-11-07 11:53:09.592951,2025-11-07 11:53:09.592951 prettyprinter,unknown,Prettyprinter.Internal,Pretty,src/Prettyprinter/Internal.hs:263:7-12,"class Pretty a where pretty :: a -> Doc ann default pretty :: Show a => a -> Doc ann pretty = viaShow prettyList :: [a] -> Doc ann prettyList = align . list . map pretty {-# MINIMAL pretty #-}",263,281,2025-11-07 11:53:11.053093,2025-11-07 11:53:11.053093 primitive,unknown,Data.Primitive.Types,Prim,Data/Primitive/Types.hs:71:7-10,"class Prim a where sizeOf# :: a -> Int# alignment# :: a -> Int# indexByteArray# :: ByteArray# -> Int# -> a readByteArray# :: MutableByteArray# s -> Int# -> State# s -> (# State# s, a #) writeByteArray# :: MutableByteArray# s -> Int# -> a -> State# s -> State# s setByteArray# :: MutableByteArray# s -> Int# "" offset"" -> Int# "" length"" -> a -> State# s -> State# s indexOffAddr# :: Addr# -> Int# -> a readOffAddr# :: Addr# -> Int# -> State# s -> (# State# s, a #) writeOffAddr# :: Addr# -> Int# -> a -> State# s -> State# s setOffAddr# :: Addr# -> Int# "" offset"" -> Int# "" length"" -> a -> State# s -> State# s",71,121,2025-11-07 11:53:14.010736,2025-11-07 11:53:14.010736 primitive,unknown,Control.Monad.Primitive,PrimMonad,Control/Monad/Primitive.hs:72:18-26,"class Monad m => PrimMonad m where type PrimState m primitive :: (State# (PrimState m) -> (# State# (PrimState m), a #)) -> m a",72,77,2025-11-07 11:53:14.010759,2025-11-07 11:53:14.010759 primitive,unknown,Control.Monad.Primitive,PrimBase,Control/Monad/Primitive.hs:86:22-29,"class PrimMonad m => PrimBase m where internal :: m a -> State# (PrimState m) -> (# State# (PrimState m), a #)",86,88,2025-11-07 11:53:14.010766,2025-11-07 11:53:14.010766 primitive,unknown,Control.Monad.Primitive,MonadPrim,Control/Monad/Primitive.hs:237:41-49,"class (PrimMonad m, s ~ PrimState m) => MonadPrim s m",237,237,2025-11-07 11:53:14.010772,2025-11-07 11:53:14.010772 primitive,unknown,Control.Monad.Primitive,MonadPrimBase,Control/Monad/Primitive.hs:244:38-50,"class (PrimBase m, MonadPrim s m) => MonadPrimBase s m",244,244,2025-11-07 11:53:14.010778,2025-11-07 11:53:14.010778 primitive-unaligned,unknown,Data.Primitive.ByteArray.Unaligned,PrimUnaligned,src/Data/Primitive/ByteArray/Unaligned.hs:39:7-19,"class PrimUnaligned a where indexUnalignedByteArray# :: ByteArray# -> Int# -> a readUnalignedByteArray# :: MutableByteArray# s -> Int# -> State# s -> (# State# s, a #) writeUnalignedByteArray# :: MutableByteArray# s -> Int# -> a -> State# s -> State# s",39,52,2025-11-07 11:53:19.144033,2025-11-07 11:53:19.144033 primitive-unlifted,unknown,Data.Primitive.Unlifted.Class,PrimUnlifted,src/Data/Primitive/Unlifted/Class.hs:37:7-18,"class PrimUnlifted a where type Unlifted a :: TYPE UnliftedRep toUnlifted# :: a -> Unlifted a fromUnlifted# :: Unlifted a -> a writeUnliftedArray# :: MutableArrayArray# s -> Int# -> a -> State# s -> State# s readUnliftedArray# :: MutableArrayArray# s -> Int# -> State# s -> (# State# s, a #) indexUnliftedArray# :: ArrayArray# -> Int# -> a",37,55,2025-11-07 11:53:20.447192,2025-11-07 11:53:20.447192 profunctors,unknown,Data.Profunctor.Sieve,Sieve,src/Data/Profunctor/Sieve.hs:34:36-40,"class (Profunctor p, Functor f) => Sieve p f | p -> f where sieve :: p a b -> a -> f b",34,35,2025-11-07 11:53:21.929324,2025-11-07 11:53:21.929324 profunctors,unknown,Data.Profunctor.Sieve,Cosieve,src/Data/Profunctor/Sieve.hs:58:36-42,"class (Profunctor p, Functor f) => Cosieve p f | p -> f where cosieve :: p a b -> f a -> b",58,59,2025-11-07 11:53:21.929337,2025-11-07 11:53:21.929337 profunctors,unknown,Data.Profunctor.Monad,ProfunctorFunctor,src/Data/Profunctor/Monad.hs:27:7-23,"class ProfunctorFunctor t where promap :: Profunctor p => (p :-> q) -> t p :-> t q",27,34,2025-11-07 11:53:21.929345,2025-11-07 11:53:21.929345 profunctors,unknown,Data.Profunctor.Monad,ProfunctorMonad,src/Data/Profunctor/Monad.hs:56:30-44,"class ProfunctorFunctor t => ProfunctorMonad t where proreturn :: Profunctor p => p :-> t p projoin :: Profunctor p => t (t p) :-> t p",56,58,2025-11-07 11:53:21.929351,2025-11-07 11:53:21.929351 profunctors,unknown,Data.Profunctor.Monad,ProfunctorComonad,src/Data/Profunctor/Monad.hs:83:30-46,"class ProfunctorFunctor t => ProfunctorComonad t where proextract :: Profunctor p => t p :-> p produplicate :: Profunctor p => t p :-> t (t p)",83,85,2025-11-07 11:53:21.929357,2025-11-07 11:53:21.929357 profunctors,unknown,Data.Profunctor.Closed,Closed,src/Data/Profunctor/Closed.hs:54:23-28,"class Profunctor p => Closed p where closed :: p a b -> p (x -> a) (x -> b)",54,62,2025-11-07 11:53:21.929364,2025-11-07 11:53:21.929364 profunctors,unknown,Data.Profunctor.Traversing,Traversing,src/Data/Profunctor/Traversing.hs:107:31-40,"class (Choice p, Strong p) => Traversing p where traverse' :: Traversable f => p a b -> p (f a) (f b) traverse' = wander traverse wander :: (forall f. Applicative f => (a -> f b) -> s -> f t) -> p a b -> p s t wander f pab = dimap (\ s -> Baz $ \ afb -> f afb s) sold (traverse' pab) {-# MINIMAL wander | traverse' #-}",107,123,2025-11-07 11:53:21.929370,2025-11-07 11:53:21.929370 prometheus-client,unknown,Prometheus.MonadMonitor,MonadMonitor,src/Prometheus/MonadMonitor.hs:34:18-29,"class Monad m => MonadMonitor m where doIO :: IO () -> m () default doIO :: (MonadTrans t, MonadMonitor n, m ~ t n) => IO () -> m () doIO = lift . doIO",34,37,2025-11-07 11:53:23.523667,2025-11-07 11:53:23.523667 prometheus-client,unknown,Prometheus.Label,Label,src/Prometheus/Label.hs:33:16-20,"class Ord l => Label l where labelPairs :: l -> l -> LabelPairs",33,34,2025-11-07 11:53:23.523685,2025-11-07 11:53:23.523685 profunctors,unknown,Data.Profunctor.Unsafe,Profunctor,src/Data/Profunctor/Unsafe.hs:89:7-16,"class Profunctor p where dimap :: (a -> b) -> (c -> d) -> p b c -> p a d dimap f g = lmap f . rmap g {-# INLINE dimap #-} lmap :: (a -> b) -> p b c -> p a c lmap f = dimap f id {-# INLINE lmap #-} rmap :: (b -> c) -> p a b -> p a c rmap = dimap id {-# INLINE rmap #-} (#.) :: forall a b c q. Coercible c b => q b c -> p a b -> p a c (#.) = \ _ -> \ p -> p `seq` rmap (coerce (id :: c -> c) :: b -> c) p {-# INLINE (#.) #-} (.#) :: forall a b c q. Coercible b a => p b c -> q a b -> p a c (.#) = \ p -> p `seq` \ _ -> lmap (coerce (id :: b -> b) :: a -> b) p {-# INLINE (.#) #-} {-# MINIMAL dimap | (lmap, rmap) #-}",89,166,2025-11-07 11:53:21.929378,2025-11-07 11:53:21.929378 profunctors,unknown,Data.Profunctor.Mapping,Mapping,src/Data/Profunctor/Mapping.hs:43:35-41,"class (Traversing p, Closed p) => Mapping p where map' :: Functor f => p a b -> p (f a) (f b) map' = roam fmap roam :: ((a -> b) -> s -> t) -> p a b -> p s t roam f = dimap (\ s -> Bar $ \ ab -> f ab s) lent . map'",43,56,2025-11-07 11:53:21.929390,2025-11-07 11:53:21.929390 profunctors,unknown,Data.Profunctor.Strong,Strong,src/Data/Profunctor/Strong.hs:68:23-28,"class Profunctor p => Strong p where first' :: p a b -> p (a, c) (b, c) first' = dimap swap swap . second' second' :: p a b -> p (c, a) (c, b) second' = dimap swap swap . first' {-# MINIMAL first' | second' #-}",68,95,2025-11-07 11:53:21.929397,2025-11-07 11:53:21.929397 profunctors,unknown,Data.Profunctor.Strong,Costrong,src/Data/Profunctor/Strong.hs:332:23-30,"class Profunctor p => Costrong p where unfirst :: p (a, d) (b, d) -> p a b unfirst = unsecond . dimap swap swap unsecond :: p (d, a) (d, b) -> p a b unsecond = unfirst . dimap swap swap {-# MINIMAL unfirst | unsecond #-}",332,359,2025-11-07 11:53:21.929404,2025-11-07 11:53:21.929404 profunctors,unknown,Data.Profunctor.Adjunction,ProfunctorAdjunction,src/Data/Profunctor/Adjunction.hs:28:53-72,"class (ProfunctorFunctor f, ProfunctorFunctor u) => ProfunctorAdjunction f u | f -> u, u -> f where unit :: Profunctor p => p :-> u (f p) counit :: Profunctor p => f (u p) :-> p",28,30,2025-11-07 11:53:21.929411,2025-11-07 11:53:21.929411 profunctors,unknown,Data.Profunctor.Rep,Representable,src/Data/Profunctor/Rep.hs:61:38-50,"class (Sieve p (Rep p), Strong p) => Representable p where type Rep p :: * -> * tabulate :: (d -> Rep p c) -> p d c",61,69,2025-11-07 11:53:21.929418,2025-11-07 11:53:21.929418 profunctors,unknown,Data.Profunctor.Rep,Corepresentable,src/Data/Profunctor/Rep.hs:122:44-58,"class (Cosieve p (Corep p), Costrong p) => Corepresentable p where type Corep p :: * -> * cotabulate :: (Corep p d -> c) -> p d c",122,130,2025-11-07 11:53:21.929423,2025-11-07 11:53:21.929423 profunctors,unknown,Data.Profunctor.Choice,Choice,src/Data/Profunctor/Choice.hs:63:23-28,"class Profunctor p => Choice p where left' :: p a b -> p (Either a c) (Either b c) left' = dimap (either Right Left) (either Right Left) . right' right' :: p a b -> p (Either c a) (Either c b) right' = dimap (either Right Left) (either Right Left) . left' {-# MINIMAL left' | right' #-}",63,106,2025-11-07 11:53:21.929430,2025-11-07 11:53:21.929430 profunctors,unknown,Data.Profunctor.Choice,Cochoice,src/Data/Profunctor/Choice.hs:301:23-30,"class Profunctor p => Cochoice p where unleft :: p (Either a d) (Either b d) -> p a b unleft = unright . dimap (either Right Left) (either Right Left) unright :: p (Either d a) (Either d b) -> p a b unright = unleft . dimap (either Right Left) (either Right Left) {-# MINIMAL unleft | unright #-}",301,344,2025-11-07 11:53:21.929437,2025-11-07 11:53:21.929437 prometheus-client,unknown,Prometheus.Metric.Observer,Observer,src/Prometheus/Metric/Observer.hs:14:7-14,"class Observer metric where observe :: MonadMonitor m => metric -> Double -> m ()",14,17,2025-11-07 11:53:23.523692,2025-11-07 11:53:23.523692 psqueues,unknown,Data.PSQ.Class,PSQ,tests/Data/PSQ/Class.hs:17:7-9,"class PSQ (psq :: * -> * -> *) where type Key psq :: * null :: Ord p => psq p v -> Bool size :: Ord p => psq p v -> Int member :: Ord p => Key psq -> psq p v -> Bool lookup :: Ord p => Key psq -> psq p v -> Maybe (p, v) findMin :: Ord p => psq p v -> Maybe (Key psq, p, v) empty :: Ord p => psq p v singleton :: Ord p => Key psq -> p -> v -> psq p v insert :: Ord p => Key psq -> p -> v -> psq p v -> psq p v delete :: Ord p => Key psq -> psq p v -> psq p v deleteMin :: Ord p => psq p v -> psq p v alter :: Ord p => (Maybe (p, v) -> (b, Maybe (p, v))) -> Key psq -> psq p v -> (b, psq p v) alterMin :: Ord p => (Maybe (Key psq, p, v) -> (b, Maybe (Key psq, p, v))) -> psq p v -> (b, psq p v) fromList :: Ord p => [(Key psq, p, v)] -> psq p v toList :: Ord p => psq p v -> [(Key psq, p, v)] keys :: Ord p => psq p v -> [Key psq] insertView :: Ord p => Key psq -> p -> v -> psq p v -> (Maybe (p, v), psq p v) deleteView :: Ord p => Key psq -> psq p v -> Maybe (p, v, psq p v) minView :: Ord p => psq p v -> Maybe (Key psq, p, v, psq p v) atMostView :: Ord p => p -> psq p v -> ([(Key psq, p, v)], psq p v) map :: Ord p => (Key psq -> p -> v -> w) -> psq p v -> psq p w unsafeMapMonotonic :: (Ord p, Ord q) => (Key psq -> p -> v -> (q, w)) -> psq p v -> psq q w fold' :: Ord p => (Key psq -> p -> v -> a -> a) -> a -> psq p v -> a valid :: Ord p => psq p v -> Bool",17,83,2025-11-07 11:53:27.585743,2025-11-07 11:53:27.585743 psqueues,unknown,Data.PSQ.Class.Util,TestKey,tests/Data/PSQ/Class/Util.hs:34:60-66,"class (Arbitrary a, Enum a, Eq a, Num a, Ord a, Show a) => TestKey a where toTestKey :: Int -> a toTestKey = toEnum fromTestKey :: a -> Int fromTestKey = fromEnum",34,39,2025-11-07 11:53:27.585774,2025-11-07 11:53:27.585774 qrcode-core,unknown,Codec.QRCode.Data.ToInput,ToText,src/Codec/QRCode/Data/ToInput.hs:23:7-12,"class ToText a where toString :: a -> [Char] isCI :: a -> Bool",23,25,2025-11-07 11:53:31.703131,2025-11-07 11:53:31.703131 qrcode-core,unknown,Codec.QRCode.Data.ToInput,ToNumeric,src/Codec/QRCode/Data/ToInput.hs:45:7-15,"class ToNumeric a where toNumeric :: a -> [Int]",45,46,2025-11-07 11:53:31.703146,2025-11-07 11:53:31.703146 qrcode-core,unknown,Codec.QRCode.Data.ToInput,ToBinary,src/Codec/QRCode/Data/ToInput.hs:62:7-14,"class ToBinary a where toBinary :: a -> [Word8]",62,63,2025-11-07 11:53:31.703153,2025-11-07 11:53:31.703153 random,unknown,System.Random,Random,src/System/Random.hs:205:7-12,"class Random a where {-# INLINE randomR #-} randomR :: RandomGen g => (a, a) -> g -> (a, g) default randomR :: (RandomGen g, UniformRange a) => (a, a) -> g -> (a, g) randomR r g = runStateGen g (uniformRM r) {-# INLINE random #-} random :: RandomGen g => g -> (a, g) default random :: (RandomGen g, Uniform a) => g -> (a, g) random g = runStateGen g uniformM {-# INLINE randomRs #-} randomRs :: RandomGen g => (a, a) -> g -> [a] randomRs ival g = build (\ cons _nil -> buildRandoms cons (randomR ival) g) {-# INLINE randoms #-} randoms :: RandomGen g => g -> [a] randoms g = build (\ cons _nil -> buildRandoms cons random g)",205,266,2025-11-07 11:53:42.428436,2025-11-07 11:53:42.428436 random-bytestring,unknown,Data.ByteString.Random.Internal,RandomWords,src/Data/ByteString/Random/Internal.hs:31:7-17,"class RandomWords g where uniformW8 :: g -> IO Word8 "" function that generates uniformily distributed random 8 bit words"" uniformW64 :: g -> IO Word64 "" function that generates uniformily distributed random 64 bit words""",31,34,2025-11-07 11:53:43.842774,2025-11-07 11:53:43.842774 random-fu,unknown,Data.Random.Distribution,Distribution,src/Data/Random/Distribution.hs:52:7-18,"class Distribution d t where rvar :: d t -> RVar t rvar = rvarT rvarT :: d t -> RVarT n t rvarT d = lift (rvar d)",52,61,2025-11-07 11:53:45.251733,2025-11-07 11:53:45.251733 random,unknown,System.Random.Internal,RandomGen,src/System/Random/Internal.hs:118:7-15,"class RandomGen g where {-# MINIMAL split, (genWord32 | genWord64 | (next, genRange)) #-} next :: g -> (Int, g) next g = runStateGen g (uniformRM (genRange g)) genWord8 :: g -> (Word8, g) genWord8 = first fromIntegral . genWord32 {-# INLINE genWord8 #-} genWord16 :: g -> (Word16, g) genWord16 = first fromIntegral . genWord32 {-# INLINE genWord16 #-} genWord32 :: g -> (Word32, g) genWord32 = randomIvalIntegral (minBound, maxBound) {-# INLINE genWord32 #-} genWord64 :: g -> (Word64, g) genWord64 g = case genWord32 g of (l32, g') -> case genWord32 g' of (h32, g'') -> ((fromIntegral h32 `shiftL` 32) .|. fromIntegral l32, g'') {-# INLINE genWord64 #-} genWord32R :: Word32 -> g -> (Word32, g) genWord32R m g = runStateGen g (unbiasedWordMult32 m) {-# INLINE genWord32R #-} genWord64R :: Word64 -> g -> (Word64, g) genWord64R m g = runStateGen g (unsignedBitmaskWithRejectionM uniformWord64 m) {-# INLINE genWord64R #-} genShortByteString :: Int -> g -> (ShortByteString, g) genShortByteString n g = unsafePerformIO $ runStateGenT g (genShortByteStringIO n . uniformWord64) {-# INLINE genShortByteString #-} genRange :: g -> (Int, Int) genRange _ = (minBound, maxBound) split :: g -> (g, g)",118,216,2025-11-07 11:53:42.428458,2025-11-07 11:53:42.428458 random,unknown,System.Random.Internal,StatefulGen,src/System/Random/Internal.hs:222:18-28,"class Monad m => StatefulGen g m where {-# MINIMAL (uniformWord32 | uniformWord64) #-} uniformWord32R :: Word32 -> g -> m Word32 uniformWord32R = unsignedBitmaskWithRejectionM uniformWord32 {-# INLINE uniformWord32R #-} uniformWord64R :: Word64 -> g -> m Word64 uniformWord64R = unsignedBitmaskWithRejectionM uniformWord64 {-# INLINE uniformWord64R #-} uniformWord8 :: g -> m Word8 uniformWord8 = fmap fromIntegral . uniformWord32 {-# INLINE uniformWord8 #-} uniformWord16 :: g -> m Word16 uniformWord16 = fmap fromIntegral . uniformWord32 {-# INLINE uniformWord16 #-} uniformWord32 :: g -> m Word32 uniformWord32 = fmap fromIntegral . uniformWord64 {-# INLINE uniformWord32 #-} uniformWord64 :: g -> m Word64 uniformWord64 g = do l32 <- uniformWord32 g h32 <- uniformWord32 g pure (shiftL (fromIntegral h32) 32 .|. fromIntegral l32) {-# INLINE uniformWord64 #-} uniformShortByteString :: Int -> g -> m ShortByteString default uniformShortByteString :: MonadIO m => Int -> g -> m ShortByteString uniformShortByteString n = genShortByteStringIO n . uniformWord64 {-# INLINE uniformShortByteString #-}",222,291,2025-11-07 11:53:42.428478,2025-11-07 11:53:42.428478 random,unknown,System.Random.Internal,FrozenGen,src/System/Random/Internal.hs:299:41-49,"class StatefulGen (MutableGen f m) m => FrozenGen f m where type MutableGen f m = (g :: Type) | g -> f freezeGen :: MutableGen f m -> m f thawGen :: f -> m (MutableGen f m)",299,316,2025-11-07 11:53:42.428500,2025-11-07 11:53:42.428500 random,unknown,System.Random.Internal,Uniform,src/System/Random/Internal.hs:595:7-13,"class Uniform a where uniformM :: StatefulGen g m => g -> m a default uniformM :: (StatefulGen g m, Generic a, GUniform (Rep a)) => g -> m a uniformM = fmap to . (`runContT` pure) . guniformM {-# INLINE uniformM #-}",595,615,2025-11-07 11:53:42.428507,2025-11-07 11:53:42.428507 random,unknown,System.Random.Internal,GUniform,src/System/Random/Internal.hs:623:7-14,"class GUniform f where guniformM :: StatefulGen g m => g -> ContT r m (f a)",623,624,2025-11-07 11:53:42.428514,2025-11-07 11:53:42.428514 random,unknown,System.Random.Internal,UniformRange,src/System/Random/Internal.hs:677:7-18,"class UniformRange a where uniformRM :: StatefulGen g m => (a, a) -> g -> m a",677,692,2025-11-07 11:53:42.428519,2025-11-07 11:53:42.428519 random,unknown,System.Random.Stateful,RandomGenM,src/System/Random/Stateful.hs:222:41-50,"class (RandomGen r, StatefulGen g m) => RandomGenM g r m | g -> r where applyRandomGenM :: (r -> (a, r)) -> g -> m a",222,223,2025-11-07 11:53:42.428525,2025-11-07 11:53:42.428525 random,unknown,System.Random.GFinite,Finite,src/System/Random/GFinite.hs:93:7-12,"class Finite a where cardinality :: Proxy# a -> Cardinality toFinite :: Integer -> a fromFinite :: a -> Integer default cardinality :: (Generic a, GFinite (Rep a)) => Proxy# a -> Cardinality cardinality _ = gcardinality (proxy# :: Proxy# (Rep a)) {-# INLINE cardinality #-} default toFinite :: (Generic a, GFinite (Rep a)) => Integer -> a toFinite = to . toGFinite {-# INLINE toFinite #-} default fromFinite :: (Generic a, GFinite (Rep a)) => a -> Integer fromFinite = fromGFinite . from {-# INLINE fromFinite #-}",93,108,2025-11-07 11:53:42.428531,2025-11-07 11:53:42.428531 random,unknown,System.Random.GFinite,GFinite,src/System/Random/GFinite.hs:110:7-13,"class GFinite f where gcardinality :: Proxy# f -> Cardinality toGFinite :: Integer -> f a fromGFinite :: f a -> Integer",110,113,2025-11-07 11:53:42.428542,2025-11-07 11:53:42.428542 random-fu,unknown,Data.Random.Distribution,PDF,src/Data/Random/Distribution.hs:64:27-29,"class Distribution d t => PDF d t where pdf :: d t -> t -> Double pdf d = exp . logPdf d logPdf :: d t -> t -> Double logPdf d = log . pdf d",64,68,2025-11-07 11:53:45.251750,2025-11-07 11:53:45.251750 random-fu,unknown,Data.Random.Distribution,CDF,src/Data/Random/Distribution.hs:71:27-29,"class Distribution d t => CDF d t where cdf :: d t -> t -> Double",71,96,2025-11-07 11:53:45.251758,2025-11-07 11:53:45.251758 random-fu,unknown,Data.Random.Lift,Lift,src/Data/Random/Lift.hs:27:7-10,"class Lift m n where lift :: m a -> n a",27,28,2025-11-07 11:53:45.251764,2025-11-07 11:53:45.251764 random-fu,unknown,Data.Random.Sample,Sampleable,src/Data/Random/Sample.hs:23:7-16,"class Sampleable d m t where sampleFrom :: StatefulGen g m => g -> d t -> m t",23,25,2025-11-07 11:53:45.251770,2025-11-07 11:53:45.251770 rawstring-qm,unknown,Data.Text.ToTextBuilder,ToTextBuilder,src/Data/Text/ToTextBuilder.hs:18:7-19,"class ToTextBuilder a where toTextBuilder :: a -> Builder",18,19,2025-11-07 11:53:50.468091,2025-11-07 11:53:50.468091 rawstring-qm,unknown,Data.Text.ToText,ToText,src/Data/Text/ToText.hs:30:31-36,"class (Typeable a, Read a) => ToText a where toText :: a -> Text toText = toStrict . toLazyText toLazyText :: a -> TL.Text fromText :: Text -> Either Text a fromText v = maybe (Left $ ""parse failed: `"" <> v <> ""` can not be parsed as"" <> pack (show (typeOf (undefined :: a)))) Right . readMaybe . unpack $ v maybeFromText :: Text -> Maybe a maybeFromText = either (const Nothing) Just . fromText fromLazyText :: TL.Text -> Either Text a fromLazyText = fromText . toStrict maybeFromLazyText :: TL.Text -> Maybe a maybeFromLazyText = either (const Nothing) Just . fromLazyText",30,45,2025-11-07 11:53:50.468101,2025-11-07 11:53:50.468101 record-dot-preprocessor,unknown,Compat,WithoutExt,plugin/Compat.hs:87:7-16,"class WithoutExt a where noE :: a",87,92,2025-11-07 11:53:53.776304,2025-11-07 11:53:53.776304 record-hasfield,unknown,GHC.Records.Compat,HasField,src/GHC/Records/Compat.hs:25:7-14,"class HasField x r a | x r -> a where hasField :: r -> (a -> r, a)",25,27,2025-11-07 11:53:55.173310,2025-11-07 11:53:55.173310 recover-rtti,unknown,Test.RecoverRTTI.ConcreteClassifier,UserSatisfies,tests/Test/RecoverRTTI/ConcreteClassifier.hs:111:8-20,"class (c SimpleType, forall a. c a => c (NonRecursive a), forall a. c a => c (Recursive a), c ContainsUnlifted) => UserSatisfies c",106,111,2025-11-07 11:53:56.679184,2025-11-07 11:53:56.679184 recover-rtti,unknown,Test.RecoverRTTI.UserDefined,ConstrsOf,tests/Test/RecoverRTTI/UserDefined.hs:80:7-15,"class ConstrsOf (f :: k) where constrsOf :: Proxy f -> [String]",80,81,2025-11-07 11:53:56.679199,2025-11-07 11:53:56.679199 recover-rtti,unknown,Debug.RecoverRTTI.Modules,IsKnownPkg,src/Debug/RecoverRTTI/Modules.hs:60:7-16,"class IsKnownPkg pkg where singPkg :: SPkg pkg",60,61,2025-11-07 11:53:56.679206,2025-11-07 11:53:56.679206 recover-rtti,unknown,Debug.RecoverRTTI.Constraint,ClassifiedSatisfies,src/Debug/RecoverRTTI/Constraint.hs:194:8-26,"class (PrimSatisfies c, forall a. (c a) => c (Maybe a), forall a b. (c a, c b) => c (Either a b), forall a. (c a) => c [a], forall a. (c a) => c (Ratio a), forall a. (c a) => c (Set a), forall a b. (c a, c b) => c (Map a b), forall a. (c a) => c (IntMap a), forall a. (c a) => c (Seq a), forall a. (c a) => c (Tree a), forall a. (c a) => c (HashSet a), forall a b. (c a, c b) => c (HashMap a b), forall a. (c a) => c (HashMap.Array a), forall a. (c a) => c (Prim.Array a), forall a. (c a) => c (Vector.Boxed.Vector a), forall xs. (All c xs, IsValidSize (Length xs)) => c (WrappedTuple xs)) => ClassifiedSatisfies (c :: Type -> Constraint)",176,194,2025-11-07 11:53:56.679212,2025-11-07 11:53:56.679212 recover-rtti,unknown,Debug.RecoverRTTI.Nat,KnownNat,src/Debug/RecoverRTTI/Nat.hs:34:7-14,"class KnownNat (n :: Nat) where singNat :: SNat n",34,35,2025-11-07 11:53:56.679226,2025-11-07 11:53:56.679226 recover-rtti,unknown,Debug.RecoverRTTI.Tuple.Size,IsValidSize,src/Debug/RecoverRTTI/Tuple/Size.hs:65:21-31,"class KnownNat n => IsValidSize n where isValidSize :: ValidSize n",65,66,2025-11-07 11:53:56.679232,2025-11-07 11:53:56.679232 recursion-schemes,unknown,Data.Functor.Foldable,Recursive,src/Data/Functor/Foldable.hs:205:27-35,"class Functor (Base t) => Recursive t where project :: t -> Base t t default project :: (Generic t, Generic (Base t t), GCoerce (Rep t) (Rep (Base t t))) => t -> Base t t project = to . gcoerce . from cata :: (Base t a -> a) -> t -> a cata f = c where c = f . fmap c . project para :: (Base t (t, a) -> a) -> t -> a para t = p where p x = t . fmap ((,) <*> p) $ project x gpara :: (Corecursive t, Comonad w) => (forall b. Base t (w b) -> w (Base t b)) -> (Base t (EnvT t w a) -> a) -> t -> a gpara t = gzygo embed t prepro :: Corecursive t => (forall b. Base t b -> Base t b) -> (Base t a -> a) -> t -> a prepro e f = c where c = f . fmap (c . hoist e) . project gprepro :: (Corecursive t, Comonad w) => (forall b. Base t (w b) -> w (Base t b)) -> (forall c. Base t c -> Base t c) -> (Base t (w a) -> a) -> t -> a gprepro k e f = extract . c where c = fmap f . k . fmap (duplicate . c . hoist e) . project",205,316,2025-11-07 11:53:58.176142,2025-11-07 11:53:58.176142 recursion-schemes,unknown,Data.Functor.Foldable,Corecursive,src/Data/Functor/Foldable.hs:332:27-37,"class Functor (Base t) => Corecursive t where embed :: Base t t -> t default embed :: (Generic t, Generic (Base t t), GCoerce (Rep (Base t t)) (Rep t)) => Base t t -> t embed = to . gcoerce . from ana :: (a -> Base t a) "" a (Base t)-coalgebra"" -> a "" seed"" -> t "" resulting fixed point"" ana g = a where a = embed . fmap a . g apo :: (a -> Base t (Either t a)) -> a -> t apo g = a where a = embed . (fmap (either id a)) . g postpro :: Recursive t => (forall b. Base t b -> Base t b) -> (a -> Base t a) -> a -> t postpro e g = a where a = embed . fmap (hoist e . a) . g gpostpro :: (Recursive t, Monad m) => (forall b. m (Base t b) -> Base t (m b)) -> (forall c. Base t c -> Base t c) -> (a -> Base t (m a)) -> a -> t gpostpro k e g = a . return where a = embed . fmap (hoist e . a . join) . k . liftM g",332,371,2025-11-07 11:53:58.176171,2025-11-07 11:53:58.176171 recursion-schemes,unknown,Data.Functor.Foldable,GCoerce,src/Data/Functor/Foldable.hs:1038:7-13,"class GCoerce f g where gcoerce :: f a -> g a",1038,1039,2025-11-07 11:53:58.176188,2025-11-07 11:53:58.176188 recursion-schemes,unknown,Data.Functor.Foldable.TH,MakeBaseFunctor,src/Data/Functor/Foldable/TH.hs:134:7-21,"class MakeBaseFunctor a where makeBaseFunctor :: a -> DecsQ makeBaseFunctor = makeBaseFunctorWith baseRules makeBaseFunctorWith :: BaseRules -> a -> DecsQ",134,143,2025-11-07 11:53:58.176195,2025-11-07 11:53:58.176195 reducers,unknown,Data.Generator,Generator,src/Data/Generator.hs:76:7-15,"class Generator c where type Elem c mapReduce :: (Reducer e m, Monoid m) => (Elem c -> e) -> c -> m mapTo :: (Reducer e m, Monoid m) => (Elem c -> e) -> m -> c -> m mapFrom :: (Reducer e m, Monoid m) => (Elem c -> e) -> c -> m -> m mapReduce f = mapTo f mempty mapTo f m = mappend m . mapReduce f mapFrom f = mappend . mapReduce f",76,84,2025-11-07 11:54:00.874172,2025-11-07 11:54:00.874172 reducers,unknown,Data.Semigroup.Generator,Generator1,src/Data/Semigroup/Generator.hs:47:22-31,"class Generator c => Generator1 c where mapReduce1 :: Reducer e m => (Elem c -> e) -> c -> m mapTo1 :: Reducer e m => (Elem c -> e) -> m -> c -> m mapFrom1 :: Reducer e m => (Elem c -> e) -> c -> m -> m mapTo1 f m = (<>) m . mapReduce1 f mapFrom1 f = (<>) . mapReduce1 f",47,53,2025-11-07 11:54:00.874187,2025-11-07 11:54:00.874187 reducers,unknown,Data.Semigroup.Union,HasUnion,src/Data/Semigroup/Union.hs:53:7-14,"class HasUnion f where union :: f -> f -> f",53,54,2025-11-07 11:54:00.874196,2025-11-07 11:54:00.874196 reducers,unknown,Data.Semigroup.Union,HasUnion0,src/Data/Semigroup/Union.hs:64:21-29,"class HasUnion f => HasUnion0 f where empty :: f",64,65,2025-11-07 11:54:00.874201,2025-11-07 11:54:00.874201 reducers,unknown,Data.Semigroup.Union,HasUnionWith,src/Data/Semigroup/Union.hs:142:20-31,"class Functor f => HasUnionWith f where unionWith :: (a -> a -> a) -> f a -> f a -> f a",142,143,2025-11-07 11:54:00.874206,2025-11-07 11:54:00.874206 reducers,unknown,Data.Semigroup.Union,HasUnionWith0,src/Data/Semigroup/Union.hs:149:25-37,"class HasUnionWith f => HasUnionWith0 f where emptyWith :: f a",149,150,2025-11-07 11:54:00.874212,2025-11-07 11:54:00.874212 reducers,unknown,Data.Semigroup.Reducer,Reducer,src/Data/Semigroup/Reducer.hs:83:22-28,"class Semigroup m => Reducer c m where unit :: c -> m snoc :: m -> c -> m cons :: c -> m -> m snoc m = (<>) m . unit cons = (<>) . unit",83,92,2025-11-07 11:54:00.874217,2025-11-07 11:54:00.874217 references,unknown,Control.Reference.Types,MorphControl,Control/Reference/Types.hs:157:7-18,"class MorphControl (m1 :: * -> *) (m2 :: * -> *) where data MSt m1 m2 a :: * sink :: m2 a -> m1 (MSt m1 m2 a) pullBack :: m1 (MSt m1 m2 a) -> m2 a",157,160,2025-11-07 11:54:02.366718,2025-11-07 11:54:02.366718 references,unknown,Control.Reference.Predefined.Containers,Association,Control/Reference/Predefined/Containers.hs:23:7-17,"class Association e where type AssocIndex e :: * type AssocElem e :: * element :: AssocIndex e -> Simple Partial e (AssocElem e)",23,27,2025-11-07 11:54:02.366734,2025-11-07 11:54:02.366734 references,unknown,Control.Reference.Predefined.Containers,Mapping,Control/Reference/Predefined/Containers.hs:88:24-30,"class Association e => Mapping e where at :: AssocIndex e -> Simple Lens e (Maybe (AssocElem e))",88,89,2025-11-07 11:54:02.366742,2025-11-07 11:54:02.366742 references,unknown,Control.Reference.Predefined.Containers,SetLike,Control/Reference/Predefined/Containers.hs:132:7-13,"class SetLike e where type SetElem e :: * contains :: (SetElem e) -> Simple Lens e Bool",132,134,2025-11-07 11:54:02.366749,2025-11-07 11:54:02.366749 reflection,unknown,Data.Reflection,Reifies,fast/Data/Reflection.hs:180:7-13,"class Reifies s a | s -> a where reflect :: proxy s -> a",180,183,2025-11-07 11:54:03.947324,2025-11-07 11:54:03.947324 reflection,unknown,Data.Reflection,Given,fast/Data/Reflection.hs:284:7-11,"class Given a where given :: a",284,286,2025-11-07 11:54:03.947330,2025-11-07 11:54:03.947330 reflection,unknown,Data.Reflection,B,fast/Data/Reflection.hs:473:21,"class Typeable s => B s where reflectByte :: proxy s -> IntPtr",473,474,2025-11-07 11:54:03.947336,2025-11-07 11:54:03.947336 regex-base,unknown,Text.Regex.Base.RegexLike,RegexOptions,src/Text/Regex/Base/RegexLike.hs:81:7-18,"class RegexOptions regex compOpt execOpt | regex -> compOpt execOpt, compOpt -> regex execOpt, execOpt -> regex compOpt where blankCompOpt :: compOpt blankExecOpt :: execOpt defaultCompOpt :: compOpt defaultExecOpt :: execOpt setExecOpts :: execOpt -> regex -> regex getExecOpts :: regex -> execOpt",81,103,2025-11-07 11:54:07.660770,2025-11-07 11:54:07.660770 regex-base,unknown,Text.Regex.Base.RegexLike,RegexMaker,src/Text/Regex/Base/RegexLike.hs:120:47-56,"class (RegexOptions regex compOpt execOpt) => RegexMaker regex compOpt execOpt source | regex -> compOpt execOpt, compOpt -> regex execOpt, execOpt -> regex compOpt where makeRegex :: source -> regex makeRegexOpts :: compOpt -> execOpt -> source -> regex makeRegexM :: (MonadFail m) => source -> m regex makeRegexOptsM :: (MonadFail m) => compOpt -> execOpt -> source -> m regex makeRegex = makeRegexOpts defaultCompOpt defaultExecOpt makeRegexM = makeRegexOptsM defaultCompOpt defaultExecOpt makeRegexOpts c e s = maybe (error ""makeRegexOpts failed"") id (makeRegexOptsM c e s) makeRegexOptsM c e s = return (makeRegexOpts c e s)",120,138,2025-11-07 11:54:07.660786,2025-11-07 11:54:07.660786 regex-base,unknown,Text.Regex.Base.RegexLike,RegexLike,src/Text/Regex/Base/RegexLike.hs:158:27-35,"class (Extract source) => RegexLike regex source where matchOnce :: regex -> source -> Maybe MatchArray matchAll :: regex -> source -> [MatchArray] matchCount :: regex -> source -> Int matchTest :: regex -> source -> Bool matchAllText :: regex -> source -> [MatchText source] matchOnceText :: regex -> source -> Maybe (source, MatchText source, source) matchAll regex source = map (fmap snd) (matchAllText regex source) matchOnce regex source = fmap (\ (_, mt, _) -> fmap snd mt) (matchOnceText regex source) matchTest regex source = isJust (matchOnce regex source) matchCount regex source = length (matchAll regex source) matchOnceText regex source = fmap (\ ma -> let (o, l) = ma ! 0 in (before o source, fmap (\ ol -> (extract ol source, ol)) ma, after (o + l) source)) (matchOnce regex source) matchAllText regex source = map (fmap (\ ol -> (extract ol source, ol))) (matchAll regex source)",158,202,2025-11-07 11:54:07.660803,2025-11-07 11:54:07.660803 regex-base,unknown,Text.Regex.Base.RegexLike,RegexContext,src/Text/Regex/Base/RegexLike.hs:225:35-46,"class (RegexLike regex source) => RegexContext regex source target where match :: regex -> source -> target matchM :: (MonadFail m) => regex -> source -> m target",225,227,2025-11-07 11:54:07.660818,2025-11-07 11:54:07.660818 regex-base,unknown,Text.Regex.Base.RegexLike,Extract,src/Text/Regex/Base/RegexLike.hs:232:7-13,"class Extract source where before :: Int -> source -> source after :: Int -> source -> source empty :: source extract :: (Int, Int) -> source -> source extract (off, len) source = before len (after off source)",232,249,2025-11-07 11:54:07.660825,2025-11-07 11:54:07.660825 regex-tdfa,unknown,Text.Regex.TDFA.NewDFA.Uncons,Uncons,lib/Text/Regex/TDFA/NewDFA/Uncons.hs:9:7-12,"class Uncons a where uncons :: a -> Maybe (Char, a)",9,11,2025-11-07 11:54:13.510617,2025-11-07 11:54:13.510617 resourcet,unknown,Control.Monad.Trans.Resource.Internal,MonadResource,Control/Monad/Trans/Resource/Internal.hs:81:20-32,"class MonadIO m => MonadResource m where liftResourceT :: ResourceT IO a -> m a",81,85,2025-11-07 11:54:17.173496,2025-11-07 11:54:17.173496 securemem,unknown,Data.SecureMem,ToSecureMem,Data/SecureMem.hs:118:7-17,"class ToSecureMem a where toSecureMem :: a -> SecureMem",118,119,2025-11-07 11:54:30.437277,2025-11-07 11:54:30.437277 selective,unknown,Sketch,SelectiveBy,test/Sketch.hs:275:24-34,"class Applicative f => SelectiveBy f where selectBy :: (a -> Either (b -> c) c) -> f a -> f b -> f c",275,276,2025-11-07 11:54:31.984952,2025-11-07 11:54:31.984952 selective,unknown,Sketch,SelectiveF,test/Sketch.hs:288:24-33,"class Applicative f => SelectiveF f where selectF :: f (Either a b) -> f c -> f (Either a (b, c))",288,289,2025-11-07 11:54:31.984967,2025-11-07 11:54:31.984967 selective,unknown,Sketch,SelectiveA,test/Sketch.hs:302:24-33,"class Applicative f => SelectiveA f where (|*|) :: f (Either e (a -> b)) -> f (Either e a) -> f (Either e b)",302,303,2025-11-07 11:54:31.984998,2025-11-07 11:54:31.984998 selective,unknown,Sketch,SelectiveS,test/Sketch.hs:307:24-33,"class Applicative f => SelectiveS f where (|.|) :: f (Either e (b -> c)) -> f (Either e (a -> b)) -> f (Either e (a -> c))",307,308,2025-11-07 11:54:31.985006,2025-11-07 11:54:31.985006 selective,unknown,Sketch,SelectiveM,test/Sketch.hs:312:24-33,"class Applicative f => SelectiveM f where (|**|) :: f (Either e a) -> f (Either e b) -> f (Either e (a, b))",312,313,2025-11-07 11:54:31.985013,2025-11-07 11:54:31.985013 selective,unknown,Sketch,SelectiveC,test/Sketch.hs:485:7-16,"class SelectiveC f where choose :: f (Either a b) -> Choice (f (a -> c)) (f (b -> c)) -> f c",485,486,2025-11-07 11:54:31.985019,2025-11-07 11:54:31.985019 selective,unknown,Sketch,ApplicativeEither,test/Sketch.hs:499:24-40,"class Applicative f => ApplicativeEither f e where raise :: e -> f a handle :: f a -> f (e -> a) -> f a",499,501,2025-11-07 11:54:31.985025,2025-11-07 11:54:31.985025 selective,unknown,Parser,MonadZero,examples/Parser.hs:31:7-15,"class MonadZero f where zero :: f a",31,32,2025-11-07 11:54:31.985031,2025-11-07 11:54:31.985031 selective,unknown,Processor,MonadState,examples/Processor.hs:24:33-42,"class (Selective m, Monad m) => MonadState s m | m -> s where get :: m s put :: s -> m () state :: (s -> (a, s)) -> m a",24,27,2025-11-07 11:54:31.985037,2025-11-07 11:54:31.985037 selective,unknown,Control.Selective,Selective,src/Control/Selective.hs:140:24-32,"class Applicative f => Selective f where select :: f (Either a b) -> f (a -> b) -> f b",140,141,2025-11-07 11:54:31.985044,2025-11-07 11:54:31.985044 selective,unknown,Control.Selective.Multi,Enumerable,src/Control/Selective/Multi.hs:123:7-16,"class Enumerable t where enumerate :: [Some t]",123,124,2025-11-07 11:54:31.985054,2025-11-07 11:54:31.985054 selective,unknown,Control.Selective.Multi,Selective,src/Control/Selective/Multi.hs:150:24-32,"class Applicative f => Selective f where match :: Enumerable t => f (Sigma t) -> (forall x. t x -> f (x -> a)) -> f a",150,151,2025-11-07 11:54:31.985060,2025-11-07 11:54:31.985060 selective,unknown,Control.Selective.Multi,ApplicativeS,src/Control/Selective/Multi.hs:200:20-31,"class Functor f => ApplicativeS f where pureA :: a -> f a matchOne :: t ~ One x => f (Sigma t) -> (forall x. t x -> f (x -> a)) -> f a",200,202,2025-11-07 11:54:31.985069,2025-11-07 11:54:31.985069 selective,unknown,Control.Selective.Multi,MonadS,src/Control/Selective/Multi.hs:214:24-29,"class Applicative f => MonadS f where matchUnconstrained :: f (Sigma t) -> (forall x. t x -> f (x -> a)) -> f a",214,215,2025-11-07 11:54:31.985076,2025-11-07 11:54:31.985076 semigroupoids,unknown,Data.Semigroupoid,Semigroupoid,src/Data/Semigroupoid.hs:57:7-18,"class Semigroupoid c where o :: c j k -> c i j -> c i k",57,58,2025-11-07 11:54:35.174767,2025-11-07 11:54:35.174767 semialign,unknown,Data.Crosswalk,Crosswalk,src/Data/Crosswalk.hs:38:34-42,"class (Functor t, Foldable t) => Crosswalk t where crosswalk :: (Align f) => (a -> f b) -> t a -> f (t b) crosswalk f = sequenceL . fmap f sequenceL :: (Align f) => t (f a) -> f (t a) sequenceL = crosswalk id {-# MINIMAL crosswalk | sequenceL #-}",38,46,2025-11-07 11:54:33.555476,2025-11-07 11:54:33.555476 semialign,unknown,Data.Crosswalk,Bicrosswalk,src/Data/Crosswalk.hs:102:38-48,"class (Bifunctor t, Bifoldable t) => Bicrosswalk t where bicrosswalk :: (Align f) => (a -> f c) -> (b -> f d) -> t a b -> f (t c d) bicrosswalk f g = bisequenceL . bimap f g bisequenceL :: (Align f) => t (f a) (f b) -> f (t a b) bisequenceL = bicrosswalk id id {-# MINIMAL bicrosswalk | bisequenceL #-}",102,110,2025-11-07 11:54:33.555490,2025-11-07 11:54:33.555490 semialign,unknown,Data.Semialign.Internal,Semialign,src/Data/Semialign/Internal.hs:152:20-28,"class Functor f => Semialign f where align :: f a -> f b -> f (These a b) align = alignWith id alignWith :: (These a b -> c) -> f a -> f b -> f c alignWith f a b = f <$> align a b {-# MINIMAL (align | alignWith) #-}",152,164,2025-11-07 11:54:33.555500,2025-11-07 11:54:33.555500 semialign,unknown,Data.Semialign.Internal,Align,src/Data/Semialign/Internal.hs:176:22-26,"class Semialign f => Align f where nil :: f a",176,179,2025-11-07 11:54:33.555507,2025-11-07 11:54:33.555507 semialign,unknown,Data.Semialign.Internal,Unalign,src/Data/Semialign/Internal.hs:202:22-28,"class Semialign f => Unalign f where unalign :: f (These a b) -> (f a, f b) unalign = unalignWith id unalignWith :: (c -> These a b) -> f c -> (f a, f b) unalignWith f fx = unalign (fmap f fx) {-# MINIMAL unalignWith | unalign #-}",202,210,2025-11-07 11:54:33.555512,2025-11-07 11:54:33.555512 semialign,unknown,Data.Semialign.Internal,Zip,src/Data/Semialign/Internal.hs:286:22-24,"class Semialign f => Zip f where zip :: f a -> f b -> f (a, b) zip = zipWith (,) zipWith :: (a -> b -> c) -> f a -> f b -> f c zipWith f a b = uncurry f <$> zip a b {-# MINIMAL (zip | zipWith) #-}",286,298,2025-11-07 11:54:33.555519,2025-11-07 11:54:33.555519 semialign,unknown,Data.Semialign.Internal,Repeat,src/Data/Semialign/Internal.hs:310:16-21,"class Zip f => Repeat f where repeat :: a -> f a",310,312,2025-11-07 11:54:33.555526,2025-11-07 11:54:33.555526 semialign,unknown,Data.Semialign.Internal,Unzip,src/Data/Semialign/Internal.hs:333:16-20,"class Zip f => Unzip f where unzipWith :: (c -> (a, b)) -> f c -> (f a, f b) unzipWith f = unzip . fmap f unzip :: f (a, b) -> (f a, f b) unzip = unzipWith id {-# MINIMAL unzipWith | unzip #-}",333,341,2025-11-07 11:54:33.555531,2025-11-07 11:54:33.555531 semialign,unknown,Data.Semialign.Internal,SemialignWithIndex,src/Data/Semialign/Internal.hs:350:46-63,"class (FunctorWithIndex i f, Semialign f) => SemialignWithIndex i f | f -> i where ialignWith :: (i -> These a b -> c) -> f a -> f b -> f c ialignWith f a b = imap f (align a b)",350,353,2025-11-07 11:54:33.555537,2025-11-07 11:54:33.555537 semialign,unknown,Data.Semialign.Internal,ZipWithIndex,src/Data/Semialign/Internal.hs:358:42-53,"class (SemialignWithIndex i f, Zip f) => ZipWithIndex i f | f -> i where izipWith :: (i -> a -> b -> c) -> f a -> f b -> f c izipWith f a b = imap (uncurry . f) (zip a b)",358,361,2025-11-07 11:54:33.555544,2025-11-07 11:54:33.555544 semialign,unknown,Data.Semialign.Internal,RepeatWithIndex,src/Data/Semialign/Internal.hs:366:39-53,"class (ZipWithIndex i f, Repeat f) => RepeatWithIndex i f | f -> i where irepeat :: (i -> a) -> f a irepeat f = imap (\ i f' -> f' i) (repeat f)",366,371,2025-11-07 11:54:33.555550,2025-11-07 11:54:33.555550 semigroupoids,unknown,Data.Groupoid,Groupoid,src/Data/Groupoid.hs:34:25-32,"class Semigroupoid k => Groupoid k where inv :: k a b -> k b a",34,35,2025-11-07 11:54:35.174781,2025-11-07 11:54:35.174781 semigroupoids,unknown,Data.Functor.Plus,Plus,src/Data/Functor/Plus.hs:88:16-19,"class Alt f => Plus f where zero :: f a",88,89,2025-11-07 11:54:35.174788,2025-11-07 11:54:35.174788 semigroupoids,unknown,Data.Functor.Alt,Alt,src/Data/Functor/Alt.hs:138:20-22,"class Functor f => Alt f where () :: f a -> f a -> f a some :: Applicative f => f a -> f [a] some v = some_v where many_v = some_v pure [] some_v = (:) <$> v <*> many_v many :: Applicative f => f a -> f [a] many v = many_v where many_v = some_v pure [] some_v = (:) <$> v <*> many_v",138,150,2025-11-07 11:54:35.174793,2025-11-07 11:54:35.174793 semigroupoids,unknown,Data.Functor.Extend,Extend,src/Data/Functor/Extend.hs:67:20-25,"class Functor w => Extend w where duplicated :: w a -> w (w a) extended :: (w a -> b) -> w a -> w b extended f = fmap f . duplicated duplicated = extended id {-# MINIMAL duplicated | extended #-}",67,80,2025-11-07 11:54:35.174802,2025-11-07 11:54:35.174802 semigroupoids,unknown,Data.Functor.Bind.Class,Apply,src/Data/Functor/Bind/Class.hs:178:20-24,"class Functor f => Apply f where (<.>) :: f (a -> b) -> f a -> f b (<.>) = liftF2 id (.>) :: f a -> f b -> f b a .> b = const id <$> a <.> b (<.) :: f a -> f b -> f a a <. b = const <$> a <.> b liftF2 :: (a -> b -> c) -> f a -> f b -> f c liftF2 f a b = f <$> a <.> b {-# INLINE liftF2 #-} {-# MINIMAL (<.>) | liftF2 #-}",178,196,2025-11-07 11:54:35.174809,2025-11-07 11:54:35.174809 semigroupoids,unknown,Data.Functor.Bind.Class,Bind,src/Data/Functor/Bind/Class.hs:571:18-21,"class Apply m => Bind m where (>>-) :: m a -> (a -> m b) -> m b m >>- f = join (fmap f m) join :: m (m a) -> m a join = (>>- id) {-# MINIMAL (>>-) | join #-}",571,579,2025-11-07 11:54:35.174817,2025-11-07 11:54:35.174817 semigroupoids,unknown,Data.Functor.Bind.Class,Biapply,src/Data/Functor/Bind/Class.hs:786:22-28,"class Bifunctor p => Biapply p where (<<.>>) :: p (a -> b) (c -> d) -> p a c -> p b d (.>>) :: p a b -> p c d -> p c d a .>> b = bimap (const id) (const id) <<$>> a <<.>> b {-# INLINE (.>>) #-} (<<.) :: p a b -> p c d -> p a b a <<. b = bimap const const <<$>> a <<.>> b {-# INLINE (<<.) #-}",786,803,2025-11-07 11:54:35.174824,2025-11-07 11:54:35.174824 semigroupoids,unknown,Data.Functor.Bind.Trans,BindTrans,src/Data/Functor/Bind/Trans.hs:49:23-31,"class MonadTrans t => BindTrans t where liftB :: Bind b => b a -> t b a",49,50,2025-11-07 11:54:35.174832,2025-11-07 11:54:35.174832 semigroupoids,unknown,Data.Functor.Contravariant.Conclude,Conclude,src/Data/Functor/Contravariant/Conclude.hs:95:19-26,"class Decide f => Conclude f where conclude :: (a -> Void) -> f a",95,97,2025-11-07 11:54:35.174837,2025-11-07 11:54:35.174837 semigroupoids,unknown,Data.Functor.Contravariant.Divise,Divise,src/Data/Functor/Contravariant/Divise.hs:104:26-31,"class Contravariant f => Divise f where divise :: (a -> (b, c)) -> f b -> f c -> f a",104,107,2025-11-07 11:54:35.174843,2025-11-07 11:54:35.174843 semigroupoids,unknown,Data.Functor.Contravariant.Decide,Decide,src/Data/Functor/Contravariant/Decide.hs:87:26-31,"class Contravariant f => Decide f where decide :: (a -> Either b c) -> f b -> f c -> f a",87,90,2025-11-07 11:54:35.174849,2025-11-07 11:54:35.174849 semigroupoids,unknown,Data.Semigroupoid.Ob,Ob,src/Data/Semigroupoid/Ob.hs:35:25-26,"class Semigroupoid k => Ob k a where semiid :: k a a",35,36,2025-11-07 11:54:35.174855,2025-11-07 11:54:35.174855 semigroupoids,unknown,Data.Semigroup.Traversable.Class,Bitraversable1,src/Data/Semigroup/Traversable/Class.hs:70:43-56,"class (Bifoldable1 t, Bitraversable t) => Bitraversable1 t where bitraverse1 :: Apply f => (a -> f b) -> (c -> f d) -> t a c -> f (t b d) bitraverse1 f g = bisequence1 . bimap f g {-# INLINE bitraverse1 #-} bisequence1 :: Apply f => t (f a) (f b) -> f (t a b) bisequence1 = bitraverse1 id id {-# INLINE bisequence1 #-} {-# MINIMAL bitraverse1 | bisequence1 #-}",70,80,2025-11-07 11:54:35.174860,2025-11-07 11:54:35.174860 shelly,unknown,Shelly,ShellCmd,src/Shelly.hs:171:7-14,"class ShellCmd t where cmdAll :: FilePath -> [Text] -> t",171,172,2025-11-07 11:54:47.231681,2025-11-07 11:54:47.231681 semigroupoids,unknown,Data.Semigroup.Traversable.Class,Traversable1,src/Data/Semigroup/Traversable/Class.hs:152:39-50,"class (Foldable1 t, Traversable t) => Traversable1 t where traverse1 :: Apply f => (a -> f b) -> t a -> f (t b) sequence1 :: Apply f => t (f b) -> f (t b) sequence1 = traverse1 id traverse1 f = sequence1 . fmap f {-# MINIMAL traverse1 | sequence1 #-}",152,160,2025-11-07 11:54:35.174868,2025-11-07 11:54:35.174868 semigroupoids,unknown,Data.Semigroup.Foldable.Class,Foldable1,src/Data/Semigroup/Foldable/Class.hs:71:21-29,"class Foldable t => Foldable1 t where fold1 :: Semigroup m => t m -> m foldMap1 :: Semigroup m => (a -> m) -> t a -> m toNonEmpty :: t a -> NonEmpty a foldMap1 f = maybe (error ""foldMap1"") id . getOptionCompat . foldMap (optionCompat . Just . f) fold1 = foldMap1 id toNonEmpty = foldMap1 (:| [])",71,78,2025-11-07 11:54:35.174876,2025-11-07 11:54:35.174876 semigroupoids,unknown,Data.Semigroup.Foldable.Class,Bifoldable1,src/Data/Semigroup/Foldable/Class.hs:128:23-33,"class Bifoldable t => Bifoldable1 t where bifold1 :: Semigroup m => t m m -> m bifold1 = bifoldMap1 id id {-# INLINE bifold1 #-} bifoldMap1 :: Semigroup m => (a -> m) -> (b -> m) -> t a b -> m bifoldMap1 f g = maybe (error ""bifoldMap1"") id . getOptionCompat . bifoldMap (optionCompat . Just . f) (optionCompat . Just . g) {-# INLINE bifoldMap1 #-}",128,137,2025-11-07 11:54:35.174884,2025-11-07 11:54:35.174884 semigroups,unknown,Data.Semigroup.Generic,GSemigroup,src/Data/Semigroup/Generic.hs:54:7-16,"class GSemigroup f where gmappend' :: f p -> f p -> f p",54,55,2025-11-07 11:54:36.829383,2025-11-07 11:54:36.829383 semigroups,unknown,Data.Semigroup.Generic,GMonoid,src/Data/Semigroup/Generic.hs:84:23-29,"class GSemigroup f => GMonoid f where gmempty' :: f p",84,85,2025-11-07 11:54:36.829392,2025-11-07 11:54:36.829392 semirings,unknown,Data.Star,Star,Data/Star.hs:27:23-26,"class (Semiring a) => Star a where {-# MINIMAL star | aplus #-} star :: a -> a star a = one `plus` aplus a aplus :: a -> a aplus a = a `times` star a",27,35,2025-11-07 11:54:38.312922,2025-11-07 11:54:38.312922 semirings,unknown,Data.Semiring,Semiring,Data/Semiring.hs:451:7-14,"class Semiring a where {-# MINIMAL plus, times, (zero, one | fromNatural) #-} plus :: a -> a -> a "" Commutative Operation"" zero :: a "" Commutative Unit"" zero = fromNatural 0 times :: a -> a -> a "" Associative Operation"" one :: a "" Associative Unit"" one = fromNatural 1 fromNatural :: Natural -> a "" Homomorphism of additive semigroups"" fromNatural 0 = zero fromNatural n = getAdd' (stimes n (Add' one))",451,463,2025-11-07 11:54:38.312936,2025-11-07 11:54:38.312936 semirings,unknown,Data.Semiring,Ring,Data/Semiring.hs:469:21-24,"class Semiring a => Ring a where {-# MINIMAL negate #-} negate :: a -> a",469,473,2025-11-07 11:54:38.312947,2025-11-07 11:54:38.312947 semirings,unknown,Data.Euclidean,GcdDomain,Data/Euclidean.hs:70:21-29,"class Semiring a => GcdDomain a where divide :: a -> a -> Maybe a default divide :: (Eq a, Euclidean a) => a -> a -> Maybe a divide x y = let (q, r) = quotRem x y in if isZero r then Just q else Nothing gcd :: a -> a -> a default gcd :: (Eq a, Euclidean a) => a -> a -> a gcd a b | isZero b = a | otherwise = gcd b (a `rem` b) lcm :: a -> a -> a default lcm :: Eq a => a -> a -> a lcm a b | isZero a || isZero b = zero | otherwise = case a `divide` gcd a b of Nothing -> error ""lcm: violated gcd invariant"" Just c -> c * b coprime :: a -> a -> Bool default coprime :: a -> a -> Bool coprime x y = isJust (one `divide` gcd x y)",70,113,2025-11-07 11:54:38.312953,2025-11-07 11:54:38.312953 semirings,unknown,Data.Euclidean,Euclidean,Data/Euclidean.hs:131:22-30,"class GcdDomain a => Euclidean a where {-# MINIMAL (quotRem | quot, rem), degree #-} quotRem :: a -> a -> (a, a) quotRem x y = (quot x y, rem x y) quot :: a -> a -> a quot x y = fst (quotRem x y) rem :: a -> a -> a rem x y = snd (quotRem x y) degree :: a -> Natural",131,158,2025-11-07 11:54:38.312965,2025-11-07 11:54:38.312965 semirings,unknown,Data.Euclidean,Field,Data/Euclidean.hs:181:32-36,"class (Euclidean a, Ring a) => Field a",181,181,2025-11-07 11:54:38.312972,2025-11-07 11:54:38.312972 semirings,unknown,Data.Semiring.Generic,GSemiring,Data/Semiring/Generic.hs:103:7-15,"class GSemiring f where {-# MINIMAL gplus', gzero', gtimes', gone', gfromNatural' #-} gzero' :: f a gone' :: f a gplus' :: f a -> f a -> f a gtimes' :: f a -> f a -> f a gfromNatural' :: Natural -> f a",103,111,2025-11-07 11:54:38.312977,2025-11-07 11:54:38.312977 semirings,unknown,Data.Semiring.Generic,GRing,Data/Semiring/Generic.hs:115:7-11,"class GRing f where {-# MINIMAL gnegate' #-} gnegate' :: f a -> f a",115,119,2025-11-07 11:54:38.312984,2025-11-07 11:54:38.312984 semirings,unknown,Data.Semiring.Tropical,Extremum,Data/Semiring/Tropical.hs:59:7-14,"class Extremum (e :: Extrema) where extremum :: EProxy e -> Extrema",59,62,2025-11-07 11:54:38.312990,2025-11-07 11:54:38.312990 servant,unknown,Servant.Links,HasLink,src/Servant/Links.hs:453:7-13,"class HasLink endpoint where type MkLink endpoint (a :: *) toLink :: (Link -> a) -> Proxy endpoint "" The API endpoint you would like to point to"" -> Link -> MkLink endpoint a",453,459,2025-11-07 11:54:39.831741,2025-11-07 11:54:39.831741 servant,unknown,Servant.Links,GLink,src/Servant/Links.hs:601:7-11,"class GLink (routes :: * -> *) (a :: *) where gLinkProof :: Dict (GLinkConstraints routes a)",601,602,2025-11-07 11:54:39.831755,2025-11-07 11:54:39.831755 servant,unknown,Servant.API.Generic,GenericMode,src/Servant/API/Generic.hs:85:7-17,"class GenericMode mode where type mode :- api :: *",85,86,2025-11-07 11:54:39.831762,2025-11-07 11:54:39.831762 servant,unknown,Servant.API.Generic,GServantProduct,src/Servant/API/Generic.hs:128:7-21,"class GServantProduct f where type GToServant f gtoServant :: f p -> GToServant f gfromServant :: GToServant f -> f p",128,131,2025-11-07 11:54:39.831767,2025-11-07 11:54:39.831767 servant,unknown,Servant.API.Verbs,ReflectMethod,src/Servant/API/Verbs.hs:165:7-19,"class ReflectMethod a where reflectMethod :: Proxy a -> Method",165,166,2025-11-07 11:54:39.831773,2025-11-07 11:54:39.831773 servant,unknown,Servant.API.ResponseHeaders,NFDataHList,src/Servant/API/ResponseHeaders.hs:81:7-17,"class NFDataHList xs where rnfHList :: HList xs -> ()",81,81,2025-11-07 11:54:39.831778,2025-11-07 11:54:39.831778 servant,unknown,Servant.API.ResponseHeaders,BuildHeadersTo,src/Servant/API/ResponseHeaders.hs:94:7-20,"class BuildHeadersTo hs where buildHeadersTo :: [HTTP.Header] -> HList hs",94,95,2025-11-07 11:54:39.831784,2025-11-07 11:54:39.831784 servant,unknown,Servant.API.ResponseHeaders,GetHeaders,src/Servant/API/ResponseHeaders.hs:117:7-16,"class GetHeaders ls where getHeaders :: ls -> [HTTP.Header]",117,118,2025-11-07 11:54:39.831789,2025-11-07 11:54:39.831789 servant,unknown,Servant.API.ResponseHeaders,GetHeadersFromHList,src/Servant/API/ResponseHeaders.hs:121:7-25,"class GetHeadersFromHList hs where getHeadersFromHList :: HList hs -> [HTTP.Header]",121,122,2025-11-07 11:54:39.831794,2025-11-07 11:54:39.831794 servant,unknown,Servant.API.ResponseHeaders,GetHeaders',src/Servant/API/ResponseHeaders.hs:141:7-17,"class GetHeaders' hs where getHeaders' :: Headers hs a -> [HTTP.Header]",141,142,2025-11-07 11:54:39.831800,2025-11-07 11:54:39.831800 servant,unknown,Servant.API.ResponseHeaders,AddHeader,src/Servant/API/ResponseHeaders.hs:159:7-15,"class AddHeader h v orig new | h v orig -> new, new -> h, new -> v, new -> orig where addOptionalHeader :: ResponseHeader h v -> orig -> new "" N.B.: The same header can't be added multiple times""",159,161,2025-11-07 11:54:39.831805,2025-11-07 11:54:39.831805 servant,unknown,Servant.API.ResponseHeaders,HasResponseHeader,src/Servant/API/ResponseHeaders.hs:204:7-23,"class HasResponseHeader h a headers where hlistLookupHeader :: HList headers -> ResponseHeader h a",204,205,2025-11-07 11:54:39.831813,2025-11-07 11:54:39.831813 servant,unknown,Servant.API.Stream,ToSourceIO,src/Servant/API/Stream.hs:92:7-16,"class ToSourceIO chunk a | a -> chunk where toSourceIO :: a -> SourceIO chunk",92,93,2025-11-07 11:54:39.831818,2025-11-07 11:54:39.831818 servant,unknown,Servant.API.Stream,SourceToSourceIO,src/Servant/API/Stream.hs:96:7-22,"class SourceToSourceIO m where sourceToSourceIO :: SourceT m a -> SourceT IO a",96,97,2025-11-07 11:54:39.831823,2025-11-07 11:54:39.831823 servant,unknown,Servant.API.Stream,FromSourceIO,src/Servant/API/Stream.hs:115:7-18,"class FromSourceIO chunk a | a -> chunk where fromSourceIO :: SourceIO chunk -> a",115,116,2025-11-07 11:54:39.831828,2025-11-07 11:54:39.831828 servant,unknown,Servant.API.Stream,FramingRender,src/Servant/API/Stream.hs:149:7-19,"class FramingRender strategy where framingRender :: Monad m => Proxy strategy -> (a -> LBS.ByteString) -> SourceT m a -> SourceT m LBS.ByteString",149,150,2025-11-07 11:54:39.831834,2025-11-07 11:54:39.831834 servant,unknown,Servant.API.Stream,FramingUnrender,src/Servant/API/Stream.hs:154:7-21,"class FramingUnrender strategy where framingUnrender :: Monad m => Proxy strategy -> (LBS.ByteString -> Either String a) -> SourceT m BS.ByteString -> SourceT m a",154,155,2025-11-07 11:54:39.831840,2025-11-07 11:54:39.831840 servant,unknown,Servant.API.UVerb,HasStatus,src/Servant/API/UVerb.hs:43:35-43,"class KnownStatus (StatusOf a) => HasStatus (a :: *) where type StatusOf (a :: *) :: Nat",43,44,2025-11-07 11:54:39.831846,2025-11-07 11:54:39.831846 servant,unknown,Servant.API.UVerb,HasStatuses,src/Servant/API/UVerb.hs:55:7-17,"class HasStatuses (as :: [*]) where type Statuses (as :: [*]) :: [Nat] statuses :: Proxy as -> [Status]",55,57,2025-11-07 11:54:39.831851,2025-11-07 11:54:39.831851 servant,unknown,Servant.API.ContentTypes,Accept,src/Servant/API/ContentTypes.hs:129:7-12,"class Accept ctype where contentType :: Proxy ctype -> M.MediaType contentType = NE.head . contentTypes contentTypes :: Proxy ctype -> NE.NonEmpty M.MediaType contentTypes = (NE.:| []) . contentType {-# MINIMAL contentType | contentTypes #-}",129,136,2025-11-07 11:54:39.831856,2025-11-07 11:54:39.831856 servant,unknown,Servant.API.ContentTypes,MimeRender,src/Servant/API/ContentTypes.hs:176:23-32,"class Accept ctype => MimeRender ctype a where mimeRender :: Proxy ctype -> a -> ByteString",176,177,2025-11-07 11:54:39.831863,2025-11-07 11:54:39.831863 servant,unknown,Servant.API.ContentTypes,AllCTRender,src/Servant/API/ContentTypes.hs:179:25-35,"class (AllMime list) => AllCTRender (list :: [*]) a where handleAcceptH :: Proxy list -> AcceptHeader -> a -> Maybe (ByteString, ByteString)",179,183,2025-11-07 11:54:39.831869,2025-11-07 11:54:39.831869 servant,unknown,Servant.API.ContentTypes,MimeUnrender,src/Servant/API/ContentTypes.hs:220:23-34,"class Accept ctype => MimeUnrender ctype a where mimeUnrender :: Proxy ctype -> ByteString -> Either String a mimeUnrender p = mimeUnrenderWithType p (contentType p) mimeUnrenderWithType :: Proxy ctype -> M.MediaType -> ByteString -> Either String a mimeUnrenderWithType p _ = mimeUnrender p {-# MINIMAL mimeUnrender | mimeUnrenderWithType #-}",220,231,2025-11-07 11:54:39.831875,2025-11-07 11:54:39.831875 servant,unknown,Servant.API.ContentTypes,AllCTUnrender,src/Servant/API/ContentTypes.hs:233:7-19,"class AllCTUnrender (list :: [*]) a where canHandleCTypeH :: Proxy list -> ByteString -> Maybe (ByteString -> Either String a) handleCTypeH :: Proxy list -> ByteString -> ByteString -> Maybe (Either String a) handleCTypeH p ctypeH body = ($ body) `fmap` canHandleCTypeH p ctypeH",233,243,2025-11-07 11:54:39.831883,2025-11-07 11:54:39.831883 servant,unknown,Servant.API.ContentTypes,AllMime,src/Servant/API/ContentTypes.hs:252:7-13,"class AllMime (list :: [*]) where allMime :: Proxy list -> [M.MediaType]",252,253,2025-11-07 11:54:39.831890,2025-11-07 11:54:39.831890 servant,unknown,Servant.API.ContentTypes,AllMimeRender,src/Servant/API/ContentTypes.hs:270:25-37,"class (AllMime list) => AllMimeRender (list :: [*]) a where allMimeRender :: Proxy list -> a -> [(M.MediaType, ByteString)]",270,273,2025-11-07 11:54:39.831895,2025-11-07 11:54:39.831895 servant,unknown,Servant.API.ContentTypes,AllMimeUnrender,src/Servant/API/ContentTypes.hs:310:25-39,"class (AllMime list) => AllMimeUnrender (list :: [*]) a where allMimeUnrender :: Proxy list -> [(M.MediaType, ByteString -> Either String a)]",310,312,2025-11-07 11:54:39.831901,2025-11-07 11:54:39.831901 servant,unknown,Servant.API.Status,KnownStatus,src/Servant/API/Status.hs:15:21-31,"class KnownNat n => KnownStatus n where statusVal :: proxy n -> Status",15,16,2025-11-07 11:54:39.831907,2025-11-07 11:54:39.831907 servant,unknown,Servant.API.TypeLevel,AtLeastOneFragment,src/Servant/API/TypeLevel.hs:257:29-46,class FragmentUnique api => AtLeastOneFragment api,257,257,2025-11-07 11:54:39.831912,2025-11-07 11:54:39.831912 servant,unknown,Servant.API.UVerb.Union,UElem,src/Servant/API/UVerb/Union.hs:100:7-11,"class UElem x xs where inject :: f x -> NS f xs eject :: NS f xs -> Maybe (f x)",100,102,2025-11-07 11:54:39.831970,2025-11-07 11:54:39.831970 servant-client-core,unknown,Servant.Client.Core.HasClient,HasClient,src/Servant/Client/Core/HasClient.hs:132:22-30,"class RunClient m => HasClient m api where type Client (m :: * -> *) (api :: *) :: * clientWithRoute :: Proxy m -> Proxy api -> Request -> Client m api hoistClientMonad :: Proxy m -> Proxy api -> (forall x. mon x -> mon' x) -> Client mon api -> Client mon' api",132,140,2025-11-07 11:54:42.681127,2025-11-07 11:54:42.681127 servant-client-core,unknown,Servant.Client.Core.HasClient,UnrenderResponse,src/Servant/Client/Core/HasClient.hs:338:7-22,"class UnrenderResponse (cts :: [*]) (a :: *) where unrenderResponse :: Seq.Seq H.Header -> BL.ByteString -> Proxy cts -> [Either (MediaType, String) a]",338,340,2025-11-07 11:54:42.681143,2025-11-07 11:54:42.681143 servant-client-core,unknown,Servant.Client.Core.HasClient,GClient,src/Servant/Client/Core/HasClient.hs:840:7-13,"class GClient (api :: * -> *) m where gClientProof :: Dict (GClientConstraints api m)",840,841,2025-11-07 11:54:42.681151,2025-11-07 11:54:42.681151 servant-client-core,unknown,Servant.Client.Core.RunClient,RunClient,src/Servant/Client/Core/RunClient.hs:27:18-26,"class Monad m => RunClient m where runRequestAcceptStatus :: Maybe [Status] -> Request -> m Response throwClientError :: ClientError -> m a",27,31,2025-11-07 11:54:42.681160,2025-11-07 11:54:42.681160 servant-client-core,unknown,Servant.Client.Core.RunClient,RunStreamingClient,src/Servant/Client/Core/RunClient.hs:37:23-40,"class RunClient m => RunStreamingClient m where withStreamingRequest :: Request -> (StreamingResponse -> IO a) -> m a",37,38,2025-11-07 11:54:42.681167,2025-11-07 11:54:42.681167 servant-server,unknown,Servant.Server.Internal,HasServer,src/Servant/Server/Internal.hs:117:7-15,"class HasServer api context where type ServerT api (m :: * -> *) :: * route :: Proxy api -> Context context -> Delayed env (Server api) -> Router env hoistServerWithContext :: Proxy api -> Proxy context -> (forall x. m x -> n x) -> ServerT api m -> ServerT api n",117,131,2025-11-07 11:54:44.249965,2025-11-07 11:54:44.249965 servant-server,unknown,Servant.Server.Internal,GServer,src/Servant/Server/Internal.hs:932:7-13,"class GServer (api :: * -> *) (m :: * -> *) where gServerProof :: Dict (GServerConstraints api m)",932,933,2025-11-07 11:54:44.249979,2025-11-07 11:54:44.249979 servant-server,unknown,Servant.Server.UVerb,IsServerResource,src/Servant/Server/UVerb.hs:48:7-22,"class IsServerResource (cts :: [*]) a where resourceResponse :: Request -> Proxy cts -> a -> Maybe (LBS, LBS) resourceHeaders :: Proxy cts -> a -> [(HeaderName, B.ByteString)]",48,50,2025-11-07 11:54:44.249987,2025-11-07 11:54:44.249987 servant-server,unknown,Servant.Server.Internal.Context,HasContextEntry,src/Servant/Server/Internal/Context.hs:76:7-21,"class HasContextEntry (context :: [*]) (val :: *) where getContextEntry :: Context context -> val",76,77,2025-11-07 11:54:44.249994,2025-11-07 11:54:44.249994 shelly,unknown,Shelly.Lifted,MonadSh,src/Shelly/Lifted.hs:124:18-24,"class Monad m => MonadSh m where liftSh :: Sh a -> m a",124,125,2025-11-07 11:54:47.231694,2025-11-07 11:54:47.231694 shelly,unknown,Shelly.Lifted,MonadShControl,src/Shelly/Lifted.hs:186:18-31,"class Monad m => MonadShControl m where data ShM m a liftShWith :: ((forall x. m x -> Sh (ShM m x)) -> Sh a) -> m a restoreSh :: ShM m a -> m a",186,189,2025-11-07 11:54:47.231700,2025-11-07 11:54:47.231700 shelly,unknown,Shelly.Pipe,ShellArg,src/Shelly/Pipe.hs:613:7-14,"class ShellArg a where toTextArgs :: a -> [Text]",613,615,2025-11-07 11:54:47.231706,2025-11-07 11:54:47.231706 shelly,unknown,Shelly.Pipe,ShellCommand,src/Shelly/Pipe.hs:626:7-18,"class ShellCommand t where cmdAll :: FilePath -> [Text] -> t",626,627,2025-11-07 11:54:47.231712,2025-11-07 11:54:47.231712 sheriff,unknown,Sheriff.CommonTypes,StrictEq,src/Sheriff/CommonTypes.hs:126:7-14,"class StrictEq a where (===) :: (HasPluginOpts u) => a -> a -> Bool",126,127,2025-11-07 11:54:48.693559,2025-11-07 11:54:48.693559 simple,unknown,Debug.SimpleReflect.Expr,FromExpr,Debug/SimpleReflect/Expr.hs:109:7-14,"class FromExpr a where fromExpr :: Expr -> a",109,110,2025-11-07 11:54:55.890093,2025-11-07 11:54:55.890093 singleton-bool,unknown,Data.Singletons.Bool,SBoolI,src/Data/Singletons/Bool.hs:57:10-15,"class SBoolI (b :: Bool) where sbool :: SBool b",57,57,2025-11-07 11:54:58.930422,2025-11-07 11:54:58.930422 smallcheck,unknown,Test.SmallCheck.Property,Testable,Test/SmallCheck/Property.hs:202:18-25,"class Monad m => Testable m a where test :: a -> Property m",202,204,2025-11-07 11:55:00.449175,2025-11-07 11:55:00.449175 smallcheck,unknown,Test.SmallCheck.Series,Serial,Test/SmallCheck/Series.hs:260:18-23,"class Monad m => Serial m a where series :: Series m a default series :: (Generic a, GSerial m (Rep a)) => Series m a series = genericSeries",260,265,2025-11-07 11:55:00.449190,2025-11-07 11:55:00.449190 smallcheck,unknown,Test.SmallCheck.Series,CoSerial,Test/SmallCheck/Series.hs:277:18-25,"class Monad m => CoSerial m a where coseries :: Series m b -> Series m (a -> b) default coseries :: (Generic a, GCoSerial m (Rep a)) => Series m b -> Series m (a -> b) coseries = genericCoseries",277,285,2025-11-07 11:55:00.449197,2025-11-07 11:55:00.449197 smallcheck,unknown,Test.SmallCheck.Series,GSerial,Test/SmallCheck/Series.hs:581:7-13,"class GSerial m f where gSeries :: Series m (f a)",581,582,2025-11-07 11:55:00.449205,2025-11-07 11:55:00.449205 smallcheck,unknown,Test.SmallCheck.Series,GCoSerial,Test/SmallCheck/Series.hs:583:7-15,"class GCoSerial m f where gCoseries :: Series m b -> Series m (f a -> b)",583,584,2025-11-07 11:55:00.449210,2025-11-07 11:55:00.449210 smallcheck,unknown,Test.SmallCheck.Property.Result,Pretty,Test/SmallCheck/Property/Result.hs:50:7-12,"class Pretty a where pretty :: a -> Doc",50,51,2025-11-07 11:55:00.449217,2025-11-07 11:55:00.449217 socks,unknown,Network.Socks5.Command,Command,Network/Socks5/Command.hs:46:7-13,"class Command a where toRequest :: a -> SocksRequest fromRequest :: SocksRequest -> Maybe a",46,48,2025-11-07 11:55:05.130215,2025-11-07 11:55:05.130215 some,unknown,HKD,FFoldable,test/HKD.hs:14:7-15,"class FFoldable t where ffoldMap :: Monoid m => (forall a. f a -> m) -> t f -> m",14,15,2025-11-07 11:55:06.640744,2025-11-07 11:55:06.640744 some,unknown,Data.GADT.Internal,GShow,src/Data/GADT/Internal.hs:45:7-11,"class GShow t where gshowsPrec :: Int -> t a -> ShowS",45,46,2025-11-07 11:55:06.640757,2025-11-07 11:55:06.640757 some,unknown,Data.GADT.Internal,GRead,src/Data/GADT/Internal.hs:127:7-11,"class GRead t where greadsPrec :: Int -> GReadS t",127,128,2025-11-07 11:55:06.640763,2025-11-07 11:55:06.640763 some,unknown,Data.GADT.Internal,GEq,src/Data/GADT/Internal.hs:271:7-9,"class GEq f where geq :: f a -> f b -> Maybe (a :~: b)",271,287,2025-11-07 11:55:06.640768,2025-11-07 11:55:06.640768 some,unknown,Data.GADT.Internal,GCompare,src/Data/GADT/Internal.hs:418:16-23,"class GEq f => GCompare f where gcompare :: f a -> f b -> GOrdering a b",418,419,2025-11-07 11:55:06.640774,2025-11-07 11:55:06.640774 some,unknown,Data.GADT.DeepSeq,GNFData,src/Data/GADT/DeepSeq.hs:28:7-13,"class GNFData f where grnf :: f a -> ()",28,29,2025-11-07 11:55:06.640779,2025-11-07 11:55:06.640779 sop-core,unknown,Data.SOP.Constraint,All,src/Data/SOP/Constraint.hs:60:33-35,"class (AllF c xs, SListI xs) => All (c :: k -> Constraint) (xs :: [k]) where cpara_SList :: proxy c -> r '[] -> (forall y ys. (c y, All c ys) => r ys -> r (y : ys)) -> r xs",60,74,2025-11-07 11:55:08.090661,2025-11-07 11:55:08.090661 sop-core,unknown,Data.SOP.Constraint,AllZip,src/Data/SOP/Constraint.hs:169:8-13,"class (SListI xs, SListI ys, SameShapeAs xs ys, SameShapeAs ys xs, AllZipF c xs ys) => AllZip (c :: a -> b -> Constraint) (xs :: [a]) (ys :: [b])",165,169,2025-11-07 11:55:08.090677,2025-11-07 11:55:08.090677 sop-core,unknown,Data.SOP.Constraint,LiftedCoercible,src/Data/SOP/Constraint.hs:225:32-46,class Coercible (f x) (g y) => LiftedCoercible f g x y,225,225,2025-11-07 11:55:08.090686,2025-11-07 11:55:08.090686 sop-core,unknown,Data.SOP.Constraint,AllZip2,src/Data/SOP/Constraint.hs:232:105-111,"class (AllZipF (AllZip f) xss yss, SListI xss, SListI yss, SameShapeAs xss yss, SameShapeAs yss xss) => AllZip2 f xss yss",232,232,2025-11-07 11:55:08.090692,2025-11-07 11:55:08.090692 sop-core,unknown,Data.SOP.Constraint,Compose,src/Data/SOP/Constraint.hs:248:23-31,class (f (g x)) => ( f `Compose` g ) x,248,248,2025-11-07 11:55:08.090699,2025-11-07 11:55:08.090699 sop-core,unknown,Data.SOP.Constraint,And,src/Data/SOP/Constraint.hs:256:24-28,"class (f x, g x) => ( f `And` g ) x",256,256,2025-11-07 11:55:08.090704,2025-11-07 11:55:08.090704 sop-core,unknown,Data.SOP.Constraint,Top,src/Data/SOP/Constraint.hs:264:7-9,class Top x,264,264,2025-11-07 11:55:08.090709,2025-11-07 11:55:08.090709 sop-core,unknown,Data.SOP.Classes,HPure,src/Data/SOP/Classes.hs:94:7-11,"class HPure (h :: (k -> Type) -> (l -> Type)) where hpure :: SListIN h xs => (forall a. f a) -> h f xs hcpure :: (AllN h c xs) => proxy c -> (forall a. c a => f a) -> h f xs",94,121,2025-11-07 11:55:08.090715,2025-11-07 11:55:08.090715 sop-core,unknown,Data.SOP.Classes,HAp,src/Data/SOP/Classes.hs:158:51-53,"class (Prod (Prod h) ~ Prod h, HPure (Prod h)) => HAp (h :: (k -> Type) -> (l -> Type)) where hap :: Prod h (f -.-> g) xs -> h f xs -> h g xs",158,182,2025-11-07 11:55:08.090722,2025-11-07 11:55:08.090722 sop-core,unknown,Data.SOP.Classes,HCollapse,src/Data/SOP/Classes.hs:350:7-15,"class HCollapse (h :: (k -> Type) -> (l -> Type)) where hcollapse :: SListIN h xs => h (K a) xs -> CollapseTo h a",350,370,2025-11-07 11:55:08.090743,2025-11-07 11:55:08.090743 sop-core,unknown,Data.SOP.Classes,HTraverse_,src/Data/SOP/Classes.hs:376:7-16,"class HTraverse_ (h :: (k -> Type) -> (l -> Type)) where hctraverse_ :: (AllN h c xs, Applicative g) => proxy c -> (forall a. c a => f a -> g ()) -> h f xs -> g () htraverse_ :: (SListIN h xs, Applicative g) => (forall a. f a -> g ()) -> h f xs -> g ()",376,406,2025-11-07 11:55:08.090750,2025-11-07 11:55:08.090750 sop-core,unknown,Data.SOP.Classes,HSequence,src/Data/SOP/Classes.hs:425:16-24,"class HAp h => HSequence (h :: (k -> Type) -> (l -> Type)) where hsequence' :: (SListIN h xs, Applicative f) => h (f :.: g) xs -> f (h g xs) hctraverse' :: (AllN h c xs, Applicative g) => proxy c -> (forall a. c a => f a -> g (f' a)) -> h f xs -> g (h f' xs) htraverse' :: (SListIN h xs, Applicative g) => (forall a. f a -> g (f' a)) -> h f xs -> g (h f' xs)",425,471,2025-11-07 11:55:08.090760,2025-11-07 11:55:08.090760 sop-core,unknown,Data.SOP.Classes,HIndex,src/Data/SOP/Classes.hs:502:7-12,"class HIndex (h :: (k -> Type) -> (l -> Type)) where hindex :: h f xs -> Int",502,528,2025-11-07 11:55:08.090769,2025-11-07 11:55:08.090769 sop-core,unknown,Data.SOP.Classes,HApInjs,src/Data/SOP/Classes.hs:542:32-38,"class (UnProd (Prod h) ~ h) => HApInjs (h :: (k -> Type) -> (l -> Type)) where hapInjs :: (SListIN h xs) => Prod h f xs -> [h f xs]",542,567,2025-11-07 11:55:08.090774,2025-11-07 11:55:08.090774 sop-core,unknown,Data.SOP.Classes,HExpand,src/Data/SOP/Classes.hs:577:7-13,"class HExpand (h :: (k -> Type) -> (l -> Type)) where hexpand :: (SListIN (Prod h) xs) => (forall x. f x) -> h f xs -> Prod h f xs hcexpand :: (AllN (Prod h) c xs) => proxy c -> (forall x. c x => f x) -> h f xs -> Prod h f xs",577,620,2025-11-07 11:55:08.090781,2025-11-07 11:55:08.090781 sop-core,unknown,Data.SOP.Classes,HTrans,src/Data/SOP/Classes.hs:628:39-44,"class (Same h1 ~ h2, Same h2 ~ h1) => HTrans (h1 :: (k1 -> Type) -> (l1 -> Type)) (h2 :: (k2 -> Type) -> (l2 -> Type)) where htrans :: AllZipN (Prod h1) c xs ys => proxy c -> (forall x y. c x y => f x -> g y) -> h1 f xs -> h2 g ys hcoerce :: AllZipN (Prod h1) (LiftedCoercible f g) xs ys => h1 f xs -> h2 g ys",628,657,2025-11-07 11:55:08.090788,2025-11-07 11:55:08.090788 sqlite-simple,unknown,Database.SQLite.Simple.ToField,ToField,Database/SQLite/Simple/ToField.hs:37:7-13,"class ToField a where toField :: a -> SQLData",37,38,2025-11-07 11:55:14.317799,2025-11-07 11:55:14.317799 sqlite-simple,unknown,Database.SQLite.Simple.FromField,FromField,Database/SQLite/Simple/FromField.hs:83:7-15,"class FromField a where fromField :: FieldParser a",83,84,2025-11-07 11:55:14.317826,2025-11-07 11:55:14.317826 sqlite-simple,unknown,Database.SQLite.Simple.ToRow,GToRow,Database/SQLite/Simple/ToRow.hs:37:7-12,"class GToRow f where gtoRow :: (f a) -> [SQLData]",37,38,2025-11-07 11:55:14.317857,2025-11-07 11:55:14.317857 sqlite-simple,unknown,Database.SQLite.Simple.ToRow,ToRow,Database/SQLite/Simple/ToRow.hs:59:7-11,"class ToRow a where toRow :: a -> [SQLData] default toRow :: Generic a => GToRow (Rep a) => a -> [SQLData] toRow a = gtoRow $ from a",59,64,2025-11-07 11:55:14.317864,2025-11-07 11:55:14.317864 sqlite-simple,unknown,Database.SQLite.Simple.Function,Function,Database/SQLite/Simple/Function.hs:22:7-14,"class Function a where argCount :: Proxy a -> Int deterministicFn :: Proxy a -> Bool evalFunction :: Base.FuncContext -> Base.FuncArgs -> Int -> a -> IO ()",22,25,2025-11-07 11:55:14.317871,2025-11-07 11:55:14.317871 sqlite-simple,unknown,Database.SQLite.Simple.FromRow,GFromRow,Database/SQLite/Simple/FromRow.hs:58:7-14,"class GFromRow f where gfromRow :: RowParser (f a)",58,59,2025-11-07 11:55:14.317879,2025-11-07 11:55:14.317879 sqlite-simple,unknown,Database.SQLite.Simple.FromRow,FromRow,Database/SQLite/Simple/FromRow.hs:110:7-13,"class FromRow a where fromRow :: RowParser a default fromRow :: Generic a => GFromRow (Rep a) => RowParser a fromRow = to <$> gfromRow",110,114,2025-11-07 11:55:14.317885,2025-11-07 11:55:14.317885 statistics,unknown,Statistics.Types,Scale,Statistics/Types.hs:426:7-11,"class Scale e where scale :: (Ord a, Num a) => a -> e a -> e a",426,427,2025-11-07 11:55:16.384547,2025-11-07 11:55:16.384547 statistics,unknown,Statistics.Distribution,Distribution,Statistics/Distribution.hs:47:7-18,"class Distribution d where cumulative :: d -> Double -> Double cumulative d x = 1 - complCumulative d x complCumulative :: d -> Double -> Double complCumulative d x = 1 - cumulative d x {-# MINIMAL (cumulative | complCumulative) #-}",47,67,2025-11-07 11:55:16.384567,2025-11-07 11:55:16.384567 statistics,unknown,Statistics.Distribution,DiscreteDistr,Statistics/Distribution.hs:71:26-38,"class Distribution d => DiscreteDistr d where probability :: d -> Int -> Double probability d = exp . logProbability d logProbability :: d -> Int -> Double logProbability d = log . probability d {-# MINIMAL (probability | logProbability) #-}",71,78,2025-11-07 11:55:16.384575,2025-11-07 11:55:16.384575 statistics,unknown,Statistics.Distribution,ContDistr,Statistics/Distribution.hs:84:25-33,"class Distribution d => ContDistr d where density :: d -> Double -> Double density d = exp . logDensity d logDensity :: d -> Double -> Double logDensity d = log . density d quantile :: d -> Double -> Double quantile d x = complQuantile d (1 - x) complQuantile :: d -> Double -> Double complQuantile d x = quantile d (1 - x) {-# MINIMAL (density | logDensity), (quantile | complQuantile) #-}",84,103,2025-11-07 11:55:16.384583,2025-11-07 11:55:16.384583 statistics,unknown,Statistics.Distribution,MaybeMean,Statistics/Distribution.hs:107:25-33,"class Distribution d => MaybeMean d where maybeMean :: d -> Maybe Double",107,108,2025-11-07 11:55:16.384592,2025-11-07 11:55:16.384592 statistics,unknown,Statistics.Distribution,Mean,Statistics/Distribution.hs:113:22-25,"class MaybeMean d => Mean d where mean :: d -> Double",113,114,2025-11-07 11:55:16.384598,2025-11-07 11:55:16.384598 statistics,unknown,Statistics.Distribution,MaybeVariance,Statistics/Distribution.hs:123:22-34,"class MaybeMean d => MaybeVariance d where maybeVariance :: d -> Maybe Double maybeVariance = fmap square . maybeStdDev maybeStdDev :: d -> Maybe Double maybeStdDev = fmap sqrt . maybeVariance {-# MINIMAL (maybeVariance | maybeStdDev) #-}",123,128,2025-11-07 11:55:16.384603,2025-11-07 11:55:16.384603 statistics,unknown,Statistics.Distribution,Variance,Statistics/Distribution.hs:135:36-43,"class (Mean d, MaybeVariance d) => Variance d where variance :: d -> Double variance d = square (stdDev d) stdDev :: d -> Double stdDev = sqrt . variance {-# MINIMAL (variance | stdDev) #-}",135,140,2025-11-07 11:55:16.384610,2025-11-07 11:55:16.384610 statistics,unknown,Statistics.Distribution,MaybeEntropy,Statistics/Distribution.hs:147:27-38,"class (Distribution d) => MaybeEntropy d where maybeEntropy :: d -> Maybe Double",147,149,2025-11-07 11:55:16.384617,2025-11-07 11:55:16.384617 statistics,unknown,Statistics.Distribution,Entropy,Statistics/Distribution.hs:156:27-33,"class (MaybeEntropy d) => Entropy d where entropy :: d -> Double",156,158,2025-11-07 11:55:16.384623,2025-11-07 11:55:16.384623 statistics,unknown,Statistics.Distribution,ContGen,Statistics/Distribution.hs:162:25-31,"class Distribution d => ContGen d where genContVar :: (StatefulGen g m) => d -> g -> m Double",162,163,2025-11-07 11:55:16.384628,2025-11-07 11:55:16.384628 statistics,unknown,Statistics.Distribution,DiscreteGen,Statistics/Distribution.hs:168:39-49,"class (DiscreteDistr d, ContGen d) => DiscreteGen d where genDiscreteVar :: (StatefulGen g m) => d -> g -> m Int",168,169,2025-11-07 11:55:16.384634,2025-11-07 11:55:16.384634 statistics,unknown,Statistics.Distribution,FromSample,Statistics/Distribution.hs:173:7-16,"class FromSample d a where fromSample :: G.Vector v a => v a -> Maybe d",173,178,2025-11-07 11:55:16.384639,2025-11-07 11:55:16.384639 statistics,unknown,Tests.Transform,HasNorm,tests/Tests/Transform.hs:136:7-13,"class HasNorm a where vectorNorm :: a -> Double",136,137,2025-11-07 11:55:16.384645,2025-11-07 11:55:16.384645 statistics,unknown,Tests.ExactDistribution,ExactDiscreteDistr,tests/Tests/ExactDistribution.hs:123:7-24,"class ExactDiscreteDistr a where exactProb :: a -> Integer -> Ratio Integer exactProb d x = exactCumulative d x - exactCumulative d (x - 1) exactCumulative :: a -> Integer -> Ratio Integer",123,129,2025-11-07 11:55:16.384650,2025-11-07 11:55:16.384650 statistics,unknown,Tests.ExactDistribution,ProductionLinkage,tests/Tests/ExactDistribution.hs:314:33-49,"class (ExactDiscreteDistr a) => ProductionLinkage a where productionLinkage :: a -> ProductionProbFuncs",314,315,2025-11-07 11:55:16.384659,2025-11-07 11:55:16.384659 storable,unknown,Foreign.Storable.Record.Tuple,Storable,src/Foreign/Storable/Record/Tuple.hs:42:7-14,"class Storable a where sizeOf :: a -> Int alignment :: a -> Int peek :: Ptr a -> IO a poke :: Ptr a -> a -> IO ()",42,46,2025-11-07 11:55:18.180931,2025-11-07 11:55:18.180931 th-reify-many,unknown,Main,C,tests/Main.hs:11:7,"class C a b where method :: b -> a",11,12,2025-11-07 11:56:22.241704,2025-11-07 11:56:22.241704 statistics,unknown,Tests.Distribution,Param,tests/Tests/Distribution.hs:318:7-11,"class Param a where quantileIsInvCDF_enabled :: T a -> Bool quantileIsInvCDF_enabled _ = True cdfLimitAtNegInfinity_enabled :: T a -> Bool cdfLimitAtNegInfinity_enabled _ = True prec_quantile_CDF :: a -> (Double, Double) prec_quantile_CDF _ = (16, 16) prec_discreteCDF :: a -> Double prec_discreteCDF _ = 32 * m_epsilon prec_complementCDF :: a -> Double prec_complementCDF _ = 1e-14 prec_logDensity :: a -> Word64 prec_logDensity _ = 32",318,336,2025-11-07 11:55:16.384666,2025-11-07 11:55:16.384666 statistics,unknown,Tests.ApproxEq,ApproxEq,tests/Tests/ApproxEq.hs:19:25-32,"class (Eq a, Show a) => ApproxEq a where type Bounds a eq :: Bounds a -> a -> a -> Bool eql :: Bounds a -> a -> a -> Property eql eps a b = counterexample (show a ++ "" /=~ "" ++ show b) (eq eps a b) (=~) :: a -> a -> Bool (==~) :: a -> a -> Property a ==~ b = counterexample (show a ++ "" /=~ "" ++ show b) (a =~ b)",19,29,2025-11-07 11:55:16.384679,2025-11-07 11:55:16.384679 store,unknown,Data.Store.Impl,Store,src/Data/Store/Impl.hs:47:7-11,"class Store a where size :: Size a poke :: a -> Poke () peek :: Peek a default size :: (Generic a, GStoreSize (Rep a)) => Size a size = genericSize default poke :: (Generic a, GStorePoke (Rep a)) => a -> Poke () poke = genericPoke default peek :: (Generic a, GStorePeek (Rep a)) => Peek a peek = genericPeek",47,74,2025-11-07 11:55:21.303085,2025-11-07 11:55:21.303085 store,unknown,Data.Store.Impl,GStoreSize,src/Data/Store/Impl.hs:207:7-16,"class GStoreSize f where gsize :: Size (f a)",207,207,2025-11-07 11:55:21.303102,2025-11-07 11:55:21.303102 store,unknown,Data.Store.Impl,GStorePoke,src/Data/Store/Impl.hs:208:7-16,"class GStorePoke f where gpoke :: f a -> Poke ()",208,208,2025-11-07 11:55:21.303108,2025-11-07 11:55:21.303108 store,unknown,Data.Store.Impl,GStorePeek,src/Data/Store/Impl.hs:209:7-16,"class GStorePeek f where gpeek :: Peek (f a)",209,209,2025-11-07 11:55:21.303113,2025-11-07 11:55:21.303113 store,unknown,Data.Store.Impl,GStoreSizeSum,src/Data/Store/Impl.hs:300:21-33,"class KnownNat n => GStoreSizeSum (n :: Nat) (f :: * -> *) where gsizeSum :: f a -> Proxy n -> Int",300,300,2025-11-07 11:55:21.303118,2025-11-07 11:55:21.303118 store,unknown,Data.Store.Impl,GStorePokeSum,src/Data/Store/Impl.hs:301:21-33,"class KnownNat n => GStorePokeSum (n :: Nat) (f :: * -> *) where gpokeSum :: f p -> Proxy n -> Poke ()",301,301,2025-11-07 11:55:21.303124,2025-11-07 11:55:21.303124 store,unknown,Data.Store.Impl,GStorePeekSum,src/Data/Store/Impl.hs:302:21-33,"class KnownNat n => GStorePeekSum (n :: Nat) (f :: * -> *) where gpeekSum :: Word8 -> Proxy n -> Peek (f p)",302,302,2025-11-07 11:55:21.303129,2025-11-07 11:55:21.303129 store,unknown,Data.Store.Internal,IsStaticSize,src/Data/Store/Internal.hs:480:21-32,"class KnownNat n => IsStaticSize n a where toStaticSize :: a -> Maybe (StaticSize n a)",480,481,2025-11-07 11:55:21.303135,2025-11-07 11:55:21.303135 store,unknown,Data.Store.TypeHash.Internal,HasTypeHash,src/Data/Store/TypeHash/Internal.hs:125:7-17,"class HasTypeHash a where typeHash :: Proxy a -> TypeHash",125,126,2025-11-07 11:55:21.303140,2025-11-07 11:55:21.303140 streaming-commons,unknown,Data.Streaming.Network,HasPort,Data/Streaming/Network.hs:467:7-13,"class HasPort a where portLens :: Functor f => (Int -> f Int) -> a -> f a",467,468,2025-11-07 11:55:24.391839,2025-11-07 11:55:24.391839 streaming-commons,unknown,Data.Streaming.Network,HasPath,Data/Streaming/Network.hs:499:7-13,"class HasPath a where pathLens :: Functor f => (FilePath -> f FilePath) -> a -> f a",499,500,2025-11-07 11:55:24.391853,2025-11-07 11:55:24.391853 streaming-commons,unknown,Data.Streaming.Network,HasAfterBind,Data/Streaming/Network.hs:519:7-18,"class HasAfterBind a where afterBindLens :: Functor f => ((Socket -> IO ()) -> f (Socket -> IO ())) -> a -> f a",519,520,2025-11-07 11:55:24.391860,2025-11-07 11:55:24.391860 streaming-commons,unknown,Data.Streaming.Network,HasReadBufferSize,Data/Streaming/Network.hs:535:7-23,"class HasReadBufferSize a where readBufferSizeLens :: Functor f => (Int -> f Int) -> a -> f a",535,536,2025-11-07 11:55:24.391866,2025-11-07 11:55:24.391866 streaming-commons,unknown,Data.Streaming.Network,HasReadWrite,Data/Streaming/Network.hs:637:7-18,"class HasReadWrite a where readLens :: Functor f => (IO ByteString -> f (IO ByteString)) -> a -> f a writeLens :: Functor f => ((ByteString -> IO ()) -> f (ByteString -> IO ())) -> a -> f a",637,639,2025-11-07 11:55:24.391872,2025-11-07 11:55:24.391872 streaming-commons,unknown,Data.Streaming.Process.Internal,InputSource,Data/Streaming/Process/Internal.hs:15:7-17,"class InputSource a where isStdStream :: (Maybe Handle -> IO a, Maybe StdStream)",15,16,2025-11-07 11:55:24.391881,2025-11-07 11:55:24.391881 streaming-commons,unknown,Data.Streaming.Process.Internal,OutputSink,Data/Streaming/Process/Internal.hs:24:7-16,"class OutputSink a where osStdStream :: (Maybe Handle -> IO a, Maybe StdStream)",24,25,2025-11-07 11:55:24.391887,2025-11-07 11:55:24.391887 streamly-core,unknown,Streamly.Internal.Data.IsMap,IsMap,src/Streamly/Internal/Data/IsMap.hs:19:7-11,"class IsMap f where type Key f :: Type mapEmpty :: f a mapAlterF :: Functor g => (Maybe a -> g (Maybe a)) -> Key f -> f a -> g (f a) mapLookup :: Key f -> f a -> Maybe a mapInsert :: Key f -> a -> f a -> f a mapDelete :: Key f -> f a -> f a mapUnion :: f a -> f a -> f a mapNull :: f a -> Bool mapTraverseWithKey :: Applicative t => (Key f -> a -> t b) -> f a -> t (f b)",19,32,2025-11-07 11:55:27.299633,2025-11-07 11:55:27.299633 streamly-core,unknown,Streamly.Internal.Data.Unbox,Unbox,src/Streamly/Internal/Data/Unbox.hs:228:7-11,"class Unbox a where sizeOf :: Proxy a -> Int {-# INLINE sizeOf #-} default sizeOf :: (SizeOfRep (Rep a)) => Proxy a -> Int sizeOf = genericSizeOf peekAt :: Int -> MutByteArray -> IO a {-# INLINE peekAt #-} default peekAt :: (Generic a, PeekRep (Rep a)) => Int -> MutByteArray -> IO a peekAt i arr = genericPeekByteIndex arr i peekByteIndex :: Int -> MutByteArray -> IO a peekByteIndex = peekAt pokeAt :: Int -> MutByteArray -> a -> IO () pokeByteIndex :: Int -> MutByteArray -> a -> IO () pokeByteIndex = pokeAt {-# INLINE pokeAt #-} default pokeAt :: (Generic a, PokeRep (Rep a)) => Int -> MutByteArray -> a -> IO () pokeAt i arr = genericPokeByteIndex arr i",228,264,2025-11-07 11:55:27.299653,2025-11-07 11:55:27.299653 streamly-core,unknown,Streamly.Internal.Data.Unbox,SizeOfRep,src/Streamly/Internal/Data/Unbox.hs:643:7-15,"class SizeOfRep (f :: Type -> Type) where sizeOfRep :: f x -> Int",643,644,2025-11-07 11:55:27.299668,2025-11-07 11:55:27.299668 streamly-core,unknown,Streamly.Internal.Data.Unbox,SizeOfRepSum,src/Streamly/Internal/Data/Unbox.hs:676:7-18,"class SizeOfRepSum (f :: Type -> Type) where sizeOfRepSum :: f x -> Int",676,677,2025-11-07 11:55:27.299674,2025-11-07 11:55:27.299674 streamly-core,unknown,Streamly.Internal.Data.Unbox,PokeRep,src/Streamly/Internal/Data/Unbox.hs:730:7-13,"class PokeRep (f :: Type -> Type) where pokeRep :: f a -> BoundedPtr -> IO BoundedPtr",730,731,2025-11-07 11:55:27.299680,2025-11-07 11:55:27.299680 streamly-core,unknown,Streamly.Internal.Data.Unbox,PokeRepSum,src/Streamly/Internal/Data/Unbox.hs:755:21-30,"class KnownNat n => PokeRepSum (n :: Nat) (f :: Type -> Type) where pokeRepSum :: Proxy n -> f a -> BoundedPtr -> IO BoundedPtr",755,757,2025-11-07 11:55:27.299685,2025-11-07 11:55:27.299685 streamly-core,unknown,Streamly.Internal.Data.Unbox,PeekRep,src/Streamly/Internal/Data/Unbox.hs:805:7-13,"class PeekRep (f :: Type -> Type) where peekRep :: Peeker (f x)",805,808,2025-11-07 11:55:27.299691,2025-11-07 11:55:27.299691 streamly-core,unknown,Streamly.Internal.Data.Unbox,PeekRepSum,src/Streamly/Internal/Data/Unbox.hs:832:21-30,"class KnownNat n => PeekRepSum (n :: Nat) (f :: Type -> Type) where peekRepSum :: Proxy n -> Word8 -> Peeker (f a)",832,834,2025-11-07 11:55:27.299697,2025-11-07 11:55:27.299697 th-utilities,unknown,TH.DeriveSpec.TH,InstShowBlind,test/TH/DeriveSpec/TH.hs:12:7-19,class InstShowBlind a,12,12,2025-11-07 11:56:23.852691,2025-11-07 11:56:23.852691 streamly-core,unknown,Streamly.Internal.Data.Unfold.Enumeration,Enumerable,src/Streamly/Internal/Data/Unfold/Enumeration.hs:385:17-26,"class Enum a => Enumerable a where enumerateFrom :: Monad m => Unfold m a a enumerateFromTo :: Monad m => Unfold m (a, a) a enumerateFromThen :: Monad m => Unfold m (a, a) a enumerateFromThenTo :: Monad m => Unfold m (a, a, a) a",385,450,2025-11-07 11:55:27.299703,2025-11-07 11:55:27.299703 streamly-core,unknown,Streamly.Internal.Data.Stream.Generate,Enumerable,src/Streamly/Internal/Data/Stream/Generate.hs:673:17-26,"class Enum a => Enumerable a where enumerateFrom :: (Monad m) => a -> Stream m a enumerateFromTo :: (Monad m) => a -> a -> Stream m a enumerateFromThen :: (Monad m) => a -> a -> Stream m a enumerateFromThenTo :: (Monad m) => a -> a -> a -> Stream m a",673,734,2025-11-07 11:55:27.299711,2025-11-07 11:55:27.299711 streamly-core,unknown,Streamly.Internal.Data.Serialize.Type,Serialize,src/Streamly/Internal/Data/Serialize/Type.hs:114:7-15,"class Serialize a where addSizeTo :: Int -> a -> Int deserializeAt :: Int -> MutByteArray -> Int -> IO (Int, a) serializeAt :: Int -> MutByteArray -> a -> IO Int",114,148,2025-11-07 11:55:27.299719,2025-11-07 11:55:27.299719 streamly-core,unknown,Streamly.Internal.Data.Time.Units,TimeUnit,src/Streamly/Internal/Data/Time/Units.hs:179:7-14,"class TimeUnit a where toTimeSpec :: a -> TimeSpec fromTimeSpec :: TimeSpec -> a",179,181,2025-11-07 11:55:27.299727,2025-11-07 11:55:27.299727 streamly-core,unknown,Streamly.Internal.Data.Time.Units,TimeUnit64,src/Streamly/Internal/Data/Time/Units.hs:193:7-16,"class TimeUnit64 a where toNanoSecond64 :: a -> NanoSecond64 fromNanoSecond64 :: NanoSecond64 -> a",193,195,2025-11-07 11:55:27.299733,2025-11-07 11:55:27.299733 streamly-core,unknown,Streamly.Internal.Data.Binary.Parser,FromBytes,src/Streamly/Internal/Data/Binary/Parser.hs:397:7-15,"class FromBytes a where fromBytes :: Parser Word8 m a",397,399,2025-11-07 11:55:27.299739,2025-11-07 11:55:27.299739 streamly-core,unknown,Streamly.Internal.Data.Binary.Stream,ToBytes,src/Streamly/Internal/Data/Binary/Stream.hs:381:7-13,"class ToBytes a where toBytes :: a -> Stream m Word8",381,383,2025-11-07 11:55:27.299745,2025-11-07 11:55:27.299745 strict,unknown,Data.Strict.Classes,Strict,src/Data/Strict/Classes.hs:41:7-12,"class Strict lazy strict | lazy -> strict, strict -> lazy where toStrict :: lazy -> strict toLazy :: strict -> lazy",41,43,2025-11-07 11:55:30.876340,2025-11-07 11:55:30.876340 string-conversions,unknown,Data.String.Conversions,ConvertibleStrings,src/Data/String/Conversions.hs:63:7-24,"class ConvertibleStrings a b where convertString :: a -> b",63,64,2025-11-07 11:55:32.208813,2025-11-07 11:55:32.208813 tagsoup,unknown,Text.StringLike,StringLike,src/Text/StringLike.hs:21:41-50,"class (Typeable a, Eq a, IsString a) => StringLike a where empty :: a cons :: Char -> a -> a uncons :: a -> Maybe (Char, a) toString :: a -> String fromChar :: Char -> a strConcat :: [a] -> a strNull :: a -> Bool append :: a -> a -> a strMap :: (Char -> Char) -> a -> a",21,41,2025-11-07 11:55:40.114553,2025-11-07 11:55:40.114553 tagsoup,unknown,Text.HTML.TagSoup,TagRep,src/Text/HTML/TagSoup.hs:64:7-12,"class TagRep a where toTagRep :: StringLike str => a -> Tag str",64,66,2025-11-07 11:55:40.114572,2025-11-07 11:55:40.114572 tagsoup,unknown,Text.HTML.TagSoup.Implementation,Outable,src/Text/HTML/TagSoup/Implementation.hs:65:7-13,"class Outable a where (&) :: a -> [Out] -> [Out]",65,65,2025-11-07 11:55:40.114579,2025-11-07 11:55:40.114579 tasty,unknown,Test.Tasty.Core,IsTest,Test/Tasty/Core.hs:140:21-26,"class Typeable t => IsTest t where run :: OptionSet "" options"" -> t "" the test to run"" -> (Progress -> IO ()) "" a callback to report progress. Note: the callback is a no-op at the moment and there are no plans to use it; feel free to ignore this argument for now."" -> IO Result testOptions :: Tagged t [OptionDescription]",140,158,2025-11-07 11:55:41.821381,2025-11-07 11:55:41.821381 tasty,unknown,Test.Tasty.Options,IsOption,Test/Tasty/Options.hs:42:21-28,"class Typeable v => IsOption v where defaultValue :: v parseValue :: String -> Maybe v optionName :: Tagged v String optionHelp :: Tagged v String showDefaultValue :: v -> Maybe String showDefaultValue _ = Nothing optionCLParser :: Parser v optionCLParser = mkOptionCLParser mempty",42,87,2025-11-07 11:55:41.821398,2025-11-07 11:55:41.821398 tasty-discover,unknown,Driver,TestGroup,test/Driver.hs:31:7-15,"class TestGroup a where testGroup :: String -> a -> IO T.TestTree",31,31,2025-11-07 11:55:43.465838,2025-11-07 11:55:43.465838 tasty-discover,unknown,Driver,TestCase,test/Driver.hs:37:7-14,"class TestCase a where testCase :: String -> a -> IO T.TestTree",37,37,2025-11-07 11:55:43.465851,2025-11-07 11:55:43.465851 tasty-discover,unknown,Test.Tasty.Discover,Tasty,src/Test/Tasty/Discover.hs:19:7-11,"class Tasty a where tasty :: TastyInfo -> a -> IO TT.TestTree",19,20,2025-11-07 11:55:43.465858,2025-11-07 11:55:43.465858 tasty-hunit,unknown,Test.Tasty.HUnit.Orig,AssertionPredicable,Test/Tasty/HUnit/Orig.hs:125:7-25,"class AssertionPredicable t where assertionPredicate :: t -> IO Bool",125,126,2025-11-07 11:55:50.563147,2025-11-07 11:55:50.563147 tasty-hunit,unknown,Test.Tasty.HUnit.Orig,Assertable,Test/Tasty/HUnit/Orig.hs:176:7-16,"class Assertable t where assert :: t -> Assertion",176,177,2025-11-07 11:55:50.563156,2025-11-07 11:55:50.563156 test,unknown,Test.Framework.Core,TestResultlike,Test/Framework/Core.hs:15:27-40,"class (Show i, Show r) => TestResultlike i r | r -> i where testSucceeded :: r -> Bool",15,16,2025-11-07 11:56:04.105297,2025-11-07 11:56:04.105297 test,unknown,Test.Framework.Core,Testlike,Test/Framework/Core.hs:21:29-36,"class TestResultlike i r => Testlike i r t | t -> i r, r -> i where runTest :: CompleteTestOptions -> t -> IO (i :~> r, IO ()) testTypeName :: t -> TestTypeName",21,23,2025-11-07 11:56:04.105314,2025-11-07 11:56:04.105314 test,unknown,Test.Framework.Runners.Core,TestRunner,Test/Framework/Runners/Core.hs:48:7-16,"class TestRunner b where runSimpleTest :: (Testlike i r t, Typeable t) => TestOptions -> TestName -> t -> b skipTest :: b runIOTest :: IO (b, IO ()) -> b runGroup :: TestName -> [b] -> b",48,56,2025-11-07 11:56:04.105323,2025-11-07 11:56:04.105323 text-format,unknown,Data.Text.Buildable,Buildable,Data/Text/Buildable.hs:42:7-15,"class Buildable p where build :: p -> Builder",42,43,2025-11-07 11:56:08.544189,2025-11-07 11:56:08.544189 text-format,unknown,Data.Text.Format.Params,Params,Data/Text/Format/Params.hs:23:7-12,"class Params ps where buildParams :: ps -> [Builder]",23,24,2025-11-07 11:56:08.544203,2025-11-07 11:56:08.544203 tf-random,unknown,System.Random.TF.Instances,Random,src/System/Random/TF/Instances.hs:37:7-12,"class Random a where randomR :: RandomGen g => (a, a) -> g -> (a, g) random :: RandomGen g => g -> (a, g) randomRs :: RandomGen g => (a, a) -> g -> [a] randomRs ival g = myUnfoldr (randomR ival) g randoms :: RandomGen g => g -> [a] randoms g = myUnfoldr random g",37,46,2025-11-07 11:56:11.568522,2025-11-07 11:56:11.568522 tf-random,unknown,System.Random.TF.Gen,RandomGen,src/System/Random/TF/Gen.hs:196:7-15,"class RandomGen g where next :: g -> (Word32, g) split :: g -> (g, g) splitn :: g "" Original generator state."" -> Int "" Number of bits that will be used to index the derived states. Must be between 0 and 32."" -> Word32 "" Index of the derived state. Call to @splitn r n i@ must satisfy @0 <= i < 2^n@."" -> g level :: g -> g",196,227,2025-11-07 11:56:11.568534,2025-11-07 11:56:11.568534 th-abstraction,unknown,Language.Haskell.TH.Datatype,TypeSubstitution,src/Language/Haskell/TH/Datatype.hs:1805:7-22,"class TypeSubstitution a where applySubstitution :: Map Name Type -> a -> a freeVariables :: a -> [Name]",1805,1809,2025-11-07 11:56:13.124560,2025-11-07 11:56:13.124560 th-utilities,unknown,TH.DeriveSpec.TH,InstShowConst,test/TH/DeriveSpec/TH.hs:21:7-19,"class InstShowConst a where _constResult :: Proxy a -> String",21,21,2025-11-07 11:56:23.852704,2025-11-07 11:56:23.852704 th-compat,unknown,Language.Haskell.TH.Syntax.Compat,IsCode,src/Language/Haskell/TH/Syntax/Compat.hs:528:7-12,"class IsCode q (a :: TYPE r) c | c -> a q where toCode :: c -> Code q a fromCode :: Code q a -> c",528,538,2025-11-07 11:56:14.612966,2025-11-07 11:56:14.612966 th-utilities,unknown,TH.DeriveSpec.TH,InstEqOrdVia,test/TH/DeriveSpec/TH.hs:35:16-27,"class Ord o => InstEqOrdVia o a where _toOrd :: a -> o",35,36,2025-11-07 11:56:23.852710,2025-11-07 11:56:23.852710 th-utilities,unknown,TH.Derive.Internal,Deriving,src/TH/Derive/Internal.hs:14:7-14,"class Deriving (cls :: Constraint) where _noInstances :: Proxy cls",14,17,2025-11-07 11:56:23.852716,2025-11-07 11:56:23.852716 th-utilities,unknown,TH.Derive.Internal,Deriver,src/TH/Derive/Internal.hs:23:7-13,"class Deriver (cls :: Constraint) where runDeriver :: Proxy cls -> Cxt -> Type -> Q [Dec]",23,24,2025-11-07 11:56:23.852722,2025-11-07 11:56:23.852722 th-utilities,unknown,TH.Derive.Internal,Instantiator,src/TH/Derive/Internal.hs:79:7-18,"class Instantiator (inst :: Constraint) where runInstantiator :: Proxy inst -> Cxt -> Type -> [Dec] -> Q [Dec]",79,80,2025-11-07 11:56:23.852727,2025-11-07 11:56:23.852727 time-compat,unknown,Test.Types,CheckDataInstances,test/main/Test/Types.hs:8:31-48,"class (Typeable t, Data t) => CheckDataInstances t",8,8,2025-11-07 11:56:27.152207,2025-11-07 11:56:27.152207 time-compat,unknown,Test.Types,CheckInstances,test/main/Test/Types.hs:9:37-50,"class (Typeable t, Data t, Eq t) => CheckInstances t",9,9,2025-11-07 11:56:27.152221,2025-11-07 11:56:27.152221 time-compat,unknown,Test.TestUtil,NameTest,test/main/Test/TestUtil.hs:17:7-14,"class NameTest a where nameTest :: String -> a -> TestTree",17,18,2025-11-07 11:56:27.152227,2025-11-07 11:56:27.152227 time-compat,unknown,Test.Format.ParseTime,HasFormatCodes,test/main/Test/Format/ParseTime.hs:63:7-20,"class HasFormatCodes t where allFormatCodes :: Proxy t -> [(Bool, Char)] incompleteS :: Maybe t incompleteS = Nothing",63,66,2025-11-07 11:56:27.152233,2025-11-07 11:56:27.152233 time-compat,unknown,Data.Format,IsoVariant,src/Data/Format.hs:44:7-16,"class IsoVariant f where isoMap :: (a -> b) -> (b -> a) -> f a -> f b",44,45,2025-11-07 11:56:27.152240,2025-11-07 11:56:27.152240 time-compat,unknown,Data.Format,Productish,src/Data/Format.hs:51:23-32,"class IsoVariant f => Productish f where pUnit :: f () (<**>) :: f a -> f b -> f (a, b) (**>) :: f () -> f a -> f a fu **> fa = isoMap (\ ((), a) -> a) (\ a -> ((), a)) $ fu <**> fa (<**) :: f a -> f () -> f a fa <** fu = isoMap (\ (a, ()) -> a) (\ a -> (a, ())) $ fa <**> fu",51,57,2025-11-07 11:56:27.152245,2025-11-07 11:56:27.152245 time-compat,unknown,Data.Format,Summish,src/Data/Format.hs:60:23-29,"class IsoVariant f => Summish f where pVoid :: f Void (<++>) :: f a -> f b -> f (Either a b)",60,62,2025-11-07 11:56:27.152253,2025-11-07 11:56:27.152253 time-compat,unknown,Data.Time.Calendar.Private,ShowPadded,src/Data/Time/Calendar/Private.hs:12:31-40,"class (Num t, Ord t, Show t) => ShowPadded t where showPaddedNum :: PadOption -> t -> String",12,13,2025-11-07 11:56:27.152258,2025-11-07 11:56:27.152258 tinylog,unknown,System.Logger.Message,ToBytes,src/System/Logger/Message.hs:96:7-13,"class ToBytes a where bytes :: a -> Builder",96,97,2025-11-07 11:56:34.779999,2025-11-07 11:56:34.779999 tinylog,unknown,System.Logger.Class,MonadLogger,src/System/Logger/Class.hs:59:18-28,"class Monad m => MonadLogger m where log :: Level -> (Msg -> Msg) -> m ()",59,60,2025-11-07 11:56:34.780011,2025-11-07 11:56:34.780011 tls,unknown,Network.TLS.Struct,TypeValuable,Network/TLS/Struct.hs:412:7-18,"class TypeValuable a where valOfType :: a -> Word8 valToType :: Word8 -> Maybe a",412,414,2025-11-07 11:56:37.054252,2025-11-07 11:56:37.054252 tls,unknown,Network.TLS.Struct,EnumSafe8,Network/TLS/Struct.hs:417:7-15,"class EnumSafe8 a where fromEnumSafe8 :: a -> Word8 toEnumSafe8 :: Word8 -> Maybe a",417,419,2025-11-07 11:56:37.054266,2025-11-07 11:56:37.054266 tls,unknown,Network.TLS.Struct,EnumSafe16,Network/TLS/Struct.hs:421:7-16,"class EnumSafe16 a where fromEnumSafe16 :: a -> Word16 toEnumSafe16 :: Word16 -> Maybe a",421,423,2025-11-07 11:56:37.054273,2025-11-07 11:56:37.054273 tls,unknown,Network.TLS.Extension,Extension,Network/TLS/Extension.hs:241:7-15,"class Extension a where extensionID :: a -> ExtensionID extensionDecode :: MessageType -> ByteString -> Maybe a extensionEncode :: a -> ByteString",241,244,2025-11-07 11:56:37.054279,2025-11-07 11:56:37.054279 tls,unknown,Network.TLS.Context,TLSParams,Network/TLS/Context.hs:98:7-15,"class TLSParams a where getTLSCommonParams :: a -> CommonParams getTLSRole :: a -> Role doHandshake :: a -> Context -> IO () doHandshakeWith :: a -> Context -> Handshake -> IO () doRequestCertificate :: a -> Context -> IO Bool doPostHandshakeAuthWith :: a -> Context -> Handshake13 -> IO ()",98,104,2025-11-07 11:56:37.054286,2025-11-07 11:56:37.054286 tls,unknown,Network.TLS.Backend,HasBackend,Network/TLS/Backend.hs:46:7-16,"class HasBackend a where initializeBackend :: a -> IO () getBackend :: a -> Backend",46,48,2025-11-07 11:56:37.054293,2025-11-07 11:56:37.054293 tls,unknown,Network.TLS.Compression,CompressionC,Network/TLS/Compression.hs:31:7-18,"class CompressionC a where compressionCID :: a -> CompressionID compressionCDeflate :: a -> ByteString -> (a, ByteString) compressionCInflate :: a -> ByteString -> (a, ByteString)",31,34,2025-11-07 11:56:37.054299,2025-11-07 11:56:37.054299 tls,unknown,Network.TLS.Record.State,HasCryptLevel,Network/TLS/Record/State.hs:71:7-19,"class HasCryptLevel a where getCryptLevel :: proxy a -> CryptLevel",71,71,2025-11-07 11:56:37.054306,2025-11-07 11:56:37.054306 tls,unknown,Network.TLS.Handshake.State13,TrafficSecret,Network/TLS/Handshake/State13.hs:63:7-19,"class TrafficSecret ty where fromTrafficSecret :: ty -> (CryptLevel, ByteString)",63,64,2025-11-07 11:56:37.054312,2025-11-07 11:56:37.054312 tls,unknown,Network.TLS.Handshake.Key,LogLabel,Network/TLS/Handshake/Key.hs:145:7-14,"class LogLabel a where labelAndKey :: a -> (String, ByteString)",145,146,2025-11-07 11:56:37.054317,2025-11-07 11:56:37.054317 transformers-base,unknown,Control.Monad.Base,MonadBase,src/Control/Monad/Base.hs:61:9-17,"class (Applicative b, Applicative m, Monad b, Monad m) => MonadBase b m | m -> b where liftBase :: b α -> m α",60,63,2025-11-07 11:56:38.770773,2025-11-07 11:56:38.770773 transformers-compat,unknown,Data.Functor.Classes.Generic.Internal,GEq,generics/Data/Functor/Classes/Generic/Internal.hs:185:7-9,"class GEq a where geq :: a -> a -> Bool",185,186,2025-11-07 11:56:40.298415,2025-11-07 11:56:40.298415 transformers-compat,unknown,Data.Functor.Classes.Generic.Internal,GEq1,generics/Data/Functor/Classes/Generic/Internal.hs:285:5-8,"class (forall a. Eq a => GEq (t a)) => GEq1 v t where gliftEq :: Eq1Args v a b -> t a -> t b -> Bool",281,286,2025-11-07 11:56:40.298448,2025-11-07 11:56:40.298448 transformers-compat,unknown,Data.Functor.Classes.Generic.Internal,GOrd,generics/Data/Functor/Classes/Generic/Internal.hs:378:16-19,"class GEq a => GOrd a where gcompare :: a -> a -> Ordering",378,379,2025-11-07 11:56:40.298457,2025-11-07 11:56:40.298457 transformers-compat,unknown,Data.Functor.Classes.Generic.Internal,GOrd1,generics/Data/Functor/Classes/Generic/Internal.hs:479:12-16,"class (GEq1 v t, forall a. Ord a => GOrd (t a)) => GOrd1 v t where gliftCompare :: Ord1Args v a b -> t a -> t b -> Ordering",475,480,2025-11-07 11:56:40.298463,2025-11-07 11:56:40.298463 transformers-compat,unknown,Data.Functor.Classes.Generic.Internal,GRead,generics/Data/Functor/Classes/Generic/Internal.hs:584:7-11,"class GRead a where greadPrec :: ReadPrec a",584,585,2025-11-07 11:56:40.298471,2025-11-07 11:56:40.298471 transformers-compat,unknown,Data.Functor.Classes.Generic.Internal,GReadCon,generics/Data/Functor/Classes/Generic/Internal.hs:601:7-14,"class GReadCon a where greadPrecCon :: ConType -> ReadPrec a",601,602,2025-11-07 11:56:40.298477,2025-11-07 11:56:40.298477 trifecta,unknown,Text.Trifecta.Delta,HasBytes,src/Text/Trifecta/Delta.hs:44:7-14,"class HasBytes t where bytes :: t -> Int64",44,45,2025-11-07 11:56:45.330576,2025-11-07 11:56:45.330576 transformers-compat,unknown,Data.Functor.Classes.Generic.Internal,GRead1,generics/Data/Functor/Classes/Generic/Internal.hs:737:5-10,"class (forall a. Read a => GRead (f a)) => GRead1 v f where gliftReadPrec :: Read1Args v a -> ReadPrec (f a)",733,738,2025-11-07 11:56:40.298483,2025-11-07 11:56:40.298483 transformers-compat,unknown,Data.Functor.Classes.Generic.Internal,GRead1Con,generics/Data/Functor/Classes/Generic/Internal.hs:824:5-13,"class (forall a. Read a => GReadCon (f a)) => GRead1Con v f where gliftReadPrecCon :: ConType -> Read1Args v a -> ReadPrec (f a)",820,825,2025-11-07 11:56:40.298489,2025-11-07 11:56:40.298489 transformers-compat,unknown,Data.Functor.Classes.Generic.Internal,GShow,generics/Data/Functor/Classes/Generic/Internal.hs:920:7-11,"class GShow a where gshowsPrec :: Options -> Int -> a -> ShowS",920,921,2025-11-07 11:56:40.298496,2025-11-07 11:56:40.298496 transformers-compat,unknown,Data.Functor.Classes.Generic.Internal,GShowCon,generics/Data/Functor/Classes/Generic/Internal.hs:938:7-14,"class GShowCon a where gshowsPrecCon :: Options -> ConType -> Int -> a -> ShowS",938,939,2025-11-07 11:56:40.298501,2025-11-07 11:56:40.298501 transformers-compat,unknown,Data.Functor.Classes.Generic.Internal,GShow1,generics/Data/Functor/Classes/Generic/Internal.hs:1034:5-10,"class (forall a. Show a => GShow (f a)) => GShow1 v f where gliftShowsPrec :: Options -> Show1Args v a -> Int -> f a -> ShowS",1030,1035,2025-11-07 11:56:40.298507,2025-11-07 11:56:40.298507 transformers-compat,unknown,Data.Functor.Classes.Generic.Internal,GShow1Con,generics/Data/Functor/Classes/Generic/Internal.hs:1097:5-13,"class (forall a. Show a => GShowCon (f a)) => GShow1Con v f where gliftShowsPrecCon :: Options -> ConType -> Show1Args v a -> Int -> f a -> ShowS",1093,1099,2025-11-07 11:56:40.298514,2025-11-07 11:56:40.298514 transformers-compat,unknown,Data.Functor.Classes.Generic.Internal,IsNullaryDataType,generics/Data/Functor/Classes/Generic/Internal.hs:1316:7-23,"class IsNullaryDataType f where isNullaryDataType :: f a -> Bool",1316,1318,2025-11-07 11:56:40.298521,2025-11-07 11:56:40.298521 transformers-compat,unknown,Data.Functor.Classes.Generic.Internal,IsNullaryCon,generics/Data/Functor/Classes/Generic/Internal.hs:1328:7-18,"class IsNullaryCon f where isNullaryCon :: f a -> Bool",1328,1330,2025-11-07 11:56:40.298527,2025-11-07 11:56:40.298527 tree-diff,unknown,Data.TreeDiff.Class,ToExpr,src/Data/TreeDiff/Class.hs:169:7-12,"class ToExpr a where toExpr :: a -> Expr default toExpr :: (Generic a, GToExpr (Rep a)) => a -> Expr toExpr = genericToExpr listToExpr :: [a] -> Expr listToExpr = Lst . map toExpr",169,177,2025-11-07 11:56:43.402295,2025-11-07 11:56:43.402295 tree-diff,unknown,Data.TreeDiff.Class,GToExpr,src/Data/TreeDiff/Class.hs:191:7-13,"class GToExpr f where gtoExpr :: f x -> Expr",191,192,2025-11-07 11:56:43.402309,2025-11-07 11:56:43.402309 tree-diff,unknown,Data.TreeDiff.Class,GSumToExpr,src/Data/TreeDiff/Class.hs:197:7-16,"class GSumToExpr f where gsumToExpr :: f x -> Expr",197,198,2025-11-07 11:56:43.402315,2025-11-07 11:56:43.402315 tree-diff,unknown,Data.TreeDiff.Class,GProductToExpr,src/Data/TreeDiff/Class.hs:220:7-20,"class GProductToExpr f where gproductToExpr :: f x -> AppOrRec",220,221,2025-11-07 11:56:43.402320,2025-11-07 11:56:43.402320 tree-diff,unknown,Data.TreeDiff.Class,GLeafToExpr,src/Data/TreeDiff/Class.hs:234:7-17,"class GLeafToExpr f where gleafToExpr :: f x -> Expr",234,235,2025-11-07 11:56:43.402326,2025-11-07 11:56:43.402326 trifecta,unknown,Text.Trifecta.Delta,HasDelta,src/Text/Trifecta/Delta.hs:195:7-14,"class HasDelta t where delta :: t -> Delta",195,196,2025-11-07 11:56:45.330591,2025-11-07 11:56:45.330591 trifecta,unknown,Text.Trifecta.Result,Errable,src/Text/Trifecta/Result.hs:105:7-13,"class Errable m where raiseErr :: Err -> m a",105,106,2025-11-07 11:56:45.330598,2025-11-07 11:56:45.330598 trifecta,unknown,Text.Trifecta.Result,AsResult,src/Text/Trifecta/Result.hs:128:7-14,"class AsResult s t a b | s -> a, t -> b, s b -> t, t a -> s where _Result :: Prism s t (Result a) (Result b)",128,129,2025-11-07 11:56:45.330604,2025-11-07 11:56:45.330604 trifecta,unknown,Text.Trifecta.Rendering,Renderable,src/Text/Trifecta/Rendering.hs:239:7-16,"class Renderable t where render :: t -> Rendering",239,240,2025-11-07 11:56:45.330611,2025-11-07 11:56:45.330611 trifecta,unknown,Text.Trifecta.Rendering,Source,src/Text/Trifecta/Rendering.hs:245:7-12,"class Source t where source :: t -> (Int64, Int64, Lines -> Lines)",245,246,2025-11-07 11:56:45.330616,2025-11-07 11:56:45.330616 trifecta,unknown,Text.Trifecta.Rendering,HasCaret,src/Text/Trifecta/Rendering.hs:345:7-14,"class HasCaret t where caret :: Lens' t Caret",345,346,2025-11-07 11:56:45.330622,2025-11-07 11:56:45.330622 trifecta,unknown,Text.Trifecta.Rendering,HasSpan,src/Text/Trifecta/Rendering.hs:451:7-13,"class HasSpan t where span :: Lens' t Span",451,452,2025-11-07 11:56:45.330628,2025-11-07 11:56:45.330628 trifecta,unknown,Text.Trifecta.Combinators,DeltaParsing,src/Text/Trifecta/Combinators.hs:53:40-51,"class (MonadPlus m, TokenParsing m) => DeltaParsing m where line :: m ByteString position :: m Delta slicedWith :: (a -> Strict.ByteString -> r) -> m a -> m r rend :: m Rendering rend = rendered <$> position <*> line {-# inlinable rend #-} restOfLine :: m ByteString restOfLine = Strict.drop . fromIntegral . columnByte <$> position <*> line {-# inlinable restOfLine #-}",53,72,2025-11-07 11:56:45.330634,2025-11-07 11:56:45.330634 trifecta,unknown,Text.Trifecta.Combinators,MarkParsing,src/Text/Trifecta/Combinators.hs:205:39-49,"class (DeltaParsing m, HasDelta d) => MarkParsing d m | m -> d where mark :: m d release :: d -> m ()",205,210,2025-11-07 11:56:45.330666,2025-11-07 11:56:45.330666 unagi-chan,unknown,Control.Concurrent.Chan.Unagi.Unboxed.Internal,UnagiPrim,src/Control/Concurrent/Chan/Unagi/Unboxed/Internal.hs:186:26-34,"class (P.Prim a, Eq a) => UnagiPrim a where atomicUnicorn :: Maybe a atomicUnicorn = Nothing",186,195,2025-11-07 11:56:51.446506,2025-11-07 11:56:51.446506 uniplate,unknown,Data.Generics.Biplate,Biplate,Data/Generics/Biplate.hs:36:22-28,"class Uniplate to => Biplate from to where biplate :: BiplateType from to",36,37,2025-11-07 11:56:54.768396,2025-11-07 11:56:54.768396 uniplate,unknown,Data.Generics.UniplateStr,Uniplate,Data/Generics/UniplateStr.hs:40:7-14,"class Uniplate on where uniplate :: UniplateType on",40,56,2025-11-07 11:56:54.768411,2025-11-07 11:56:54.768411 uniplate,unknown,Data.Generics.Uniplate,Uniplate,Data/Generics/Uniplate.hs:33:7-14,"class Uniplate on where uniplate :: UniplateType on",33,38,2025-11-07 11:56:54.768418,2025-11-07 11:56:54.768418 uniplate,unknown,Data.Generics.PlateTypeable,PlateAll,Data/Generics/PlateTypeable.hs:63:7-14,"class PlateAll from to where plateAll :: from -> Type from to",63,64,2025-11-07 11:56:54.768423,2025-11-07 11:56:54.768423 uniplate,unknown,Data.Generics.Compos,Compos,Data/Generics/Compos.hs:23:21-26,class Uniplate a => Compos a,23,23,2025-11-07 11:56:54.768429,2025-11-07 11:56:54.768429 uniplate,unknown,Data.Generics.Uniplate.Operations,Uniplate,Data/Generics/Uniplate/Internal/OperationsInc.hs:9:7-14,"class Uniplate on where uniplate :: on -> (Str on, Str on -> on) {-# INLINE descend #-} descend :: (on -> on) -> on -> on descend f x = case uniplate x of (current, generate) -> generate $ strMap f current {-# INLINE descendM #-} descendM :: Applicative m => (on -> m on) -> on -> m on descendM f x = case uniplate x of (current, generate) -> generate <$> strMapM f current",9,48,2025-11-07 11:56:54.768434,2025-11-07 11:56:54.768434 universe-base,unknown,Data.Universe.Generic,GUniverse,src/Data/Universe/Generic.hs:20:7-15,"class GUniverse f where guniverse :: [f a]",20,21,2025-11-07 11:56:56.482975,2025-11-07 11:56:56.482975 universe-base,unknown,Data.Universe.Generic,GUniverseSum,src/Data/Universe/Generic.hs:26:7-18,"class GUniverseSum f where guniverseSum :: [[f a]]",26,27,2025-11-07 11:56:56.482992,2025-11-07 11:56:56.482992 universe-base,unknown,Data.Universe.Generic,GUniverseProduct,src/Data/Universe/Generic.hs:38:7-22,"class GUniverseProduct f where guniverseProduct :: [f a]",38,39,2025-11-07 11:56:56.482998,2025-11-07 11:56:56.482998 uniplate,unknown,Data.Generics.Uniplate.Operations,Biplate,Data/Generics/Uniplate/Internal/OperationsInc.hs:55:22-28,"class Uniplate to => Biplate from to where biplate :: from -> (Str to, Str to -> from) {-# INLINE descendBi #-} descendBi :: (to -> to) -> from -> from descendBi f x = case biplate x of (current, generate) -> generate $ strMap f current {-# INLINE descendBiM #-} descendBiM :: Applicative m => (to -> m to) -> from -> m from descendBiM f x = case biplate x of (current, generate) -> generate <$> strMapM f current",55,76,2025-11-07 11:56:54.768443,2025-11-07 11:56:54.768443 uniplate,unknown,Data.Generics.Uniplate.Typeable,PlateAll,Data/Generics/Uniplate/Typeable.hs:59:7-14,"class PlateAll from to where plateAll :: from -> Type from to",59,61,2025-11-07 11:56:54.768453,2025-11-07 11:56:54.768453 uniplate,unknown,Data.Generics.Uniplate.Internal.DataOnlyOperations,Uniplate,Data/Generics/Uniplate/Internal/OperationsInc.hs:9:7-14,"class Uniplate on where uniplate :: on -> (Str on, Str on -> on) {-# INLINE descend #-} descend :: (on -> on) -> on -> on descend f x = case uniplate x of (current, generate) -> generate $ strMap f current {-# INLINE descendM #-} descendM :: Applicative m => (on -> m on) -> on -> m on descendM f x = case uniplate x of (current, generate) -> generate <$> strMapM f current",9,48,2025-11-07 11:56:54.768458,2025-11-07 11:56:54.768458 uniplate,unknown,Data.Generics.Uniplate.Internal.DataOnlyOperations,Biplate,Data/Generics/Uniplate/Internal/OperationsInc.hs:55:22-28,"class Uniplate to => Biplate from to where biplate :: from -> (Str to, Str to -> from) {-# INLINE descendBi #-} descendBi :: (to -> to) -> from -> from descendBi f x = case biplate x of (current, generate) -> generate $ strMap f current {-# INLINE descendBiM #-} descendBiM :: Applicative m => (to -> m to) -> from -> m from descendBiM f x = case biplate x of (current, generate) -> generate <$> strMapM f current",55,76,2025-11-07 11:56:54.768467,2025-11-07 11:56:54.768467 universe-base,unknown,Data.Universe.Class,Universe,src/Data/Universe/Class.hs:84:7-14,"class Universe a where universe :: [a] default universe :: (Enum a, Bounded a) => [a] universe = universeDef",84,88,2025-11-07 11:56:56.483004,2025-11-07 11:56:56.483004 universe-base,unknown,Data.Universe.Class,Finite,src/Data/Universe/Class.hs:114:21-26,"class Universe a => Finite a where universeF :: [a] universeF = universe cardinality :: Tagged a Natural cardinality = Tagged (genericLength (universeF :: [a]))",114,119,2025-11-07 11:56:56.483011,2025-11-07 11:56:56.483011 universe-base,unknown,Data.Universe.Class,RationalUniverse,src/Data/Universe/Class.hs:222:7-22,"class RationalUniverse a where rationalUniverse :: [Ratio a]",222,223,2025-11-07 11:56:56.483017,2025-11-07 11:56:56.483017 universum,unknown,Universum.VarArg,SuperComposition,src/Universum/VarArg.hs:28:7-22,"class SuperComposition a b c | a b -> c where (...) :: a -> b -> c",28,54,2025-11-07 11:56:58.091598,2025-11-07 11:56:58.091598 universum,unknown,Universum.Print.Internal,Print,src/Universum/Print/Internal.hs:33:7-11,"class Print a where hPutStr :: SIO.Handle -> a -> Base.IO () hPutStrLn :: SIO.Handle -> a -> Base.IO ()",33,35,2025-11-07 11:56:58.091615,2025-11-07 11:56:58.091615 universum,unknown,Universum.Container.Class,ToPairs,src/Universum/Container/Class.hs:113:7-13,"class ToPairs t where type Key t :: Type type Val t :: Type {-# MINIMAL toPairs #-} toPairs :: t -> [(Key t, Val t)] keys :: t -> [Key t] keys = map fst . toPairs {-# INLINE keys #-} elems :: t -> [Val t] elems = map snd . toPairs {-# INLINE elems #-}",113,139,2025-11-07 11:56:58.091623,2025-11-07 11:56:58.091623 universum,unknown,Universum.Container.Class,FromList,src/Universum/Container/Class.hs:190:7-14,"class FromList l where type ListElement l :: Type type FromListC l :: Exts.Constraint type ListElement l = Exts.Item l type FromListC l = () fromList :: FromListC l => [ListElement l] -> l default fromList :: (Exts.IsList l, Exts.Item l ~ a, ListElement l ~ a) => [ListElement l] -> l fromList = Exts.fromList",190,218,2025-11-07 11:56:58.091631,2025-11-07 11:56:58.091631 universum,unknown,Universum.Container.Class,Container,src/Universum/Container/Class.hs:272:7-15,"class Container t where type Element t :: Type type Element t = ElementDefault t toList :: t -> [Element t] default toList :: (Foldable f, t ~ f a, Element t ~ a) => t -> [Element t] toList = Foldable.toList {-# INLINE toList #-} null :: t -> Bool default null :: (Foldable f, t ~ f a) => t -> Bool null = Foldable.null {-# INLINE null #-} foldr :: (Element t -> b -> b) -> b -> t -> b default foldr :: (Foldable f, t ~ f a, Element t ~ a) => (Element t -> b -> b) -> b -> t -> b foldr = Foldable.foldr {-# INLINE foldr #-} foldl :: (b -> Element t -> b) -> b -> t -> b default foldl :: (Foldable f, t ~ f a, Element t ~ a) => (b -> Element t -> b) -> b -> t -> b foldl = Foldable.foldl {-# INLINE foldl #-} foldl' :: (b -> Element t -> b) -> b -> t -> b default foldl' :: (Foldable f, t ~ f a, Element t ~ a) => (b -> Element t -> b) -> b -> t -> b foldl' = Foldable.foldl' {-# INLINE foldl' #-} length :: t -> Int default length :: (Foldable f, t ~ f a) => t -> Int length = Foldable.length {-# INLINE length #-} elem :: Eq (Element t) => Element t -> t -> Bool default elem :: (Foldable f, t ~ f a, Element t ~ a, Eq a) => Element t -> t -> Bool elem = Foldable.elem {-# INLINE elem #-} foldMap :: Monoid m => (Element t -> m) -> t -> m foldMap f = foldr (mappend . f) mempty {-# INLINE foldMap #-} fold :: Monoid (Element t) => t -> Element t fold = foldMap id {-# INLINE fold #-} foldr' :: (Element t -> b -> b) -> b -> t -> b foldr' f z0 xs = foldl f' id xs z0 where f' k x z = k $! f x z {-# INLINE foldr' #-} notElem :: Eq (Element t) => Element t -> t -> Bool notElem x = not . elem x {-# INLINE notElem #-} all :: (Element t -> Bool) -> t -> Bool all p = getAll #. foldMap (All #. p) any :: (Element t -> Bool) -> t -> Bool any p = getAny #. foldMap (Any #. p) {-# INLINE all #-} {-# INLINE any #-} and :: (Element t ~ Bool) => t -> Bool and = getAll #. foldMap All or :: (Element t ~ Bool) => t -> Bool or = getAny #. foldMap Any {-# INLINE and #-} {-# INLINE or #-} find :: (Element t -> Bool) -> t -> Maybe (Element t) find p = getFirst . foldMap (\ x -> First (if p x then Just x else Nothing)) {-# INLINE find #-} safeHead :: t -> Maybe (Element t) safeHead = foldr (\ x _ -> Just x) Nothing {-# INLINE safeHead #-} safeMaximum :: Ord (Element t) => t -> Maybe (Element t) default safeMaximum :: (Foldable f, t ~ f a, Element t ~ a, Ord (Element t)) => t -> Maybe (Element t) safeMaximum = checkingNotNull Foldable.maximum {-# INLINE safeMaximum #-} safeMinimum :: Ord (Element t) => t -> Maybe (Element t) default safeMinimum :: (Foldable f, t ~ f a, Element t ~ a, Ord (Element t)) => t -> Maybe (Element t) safeMinimum = checkingNotNull Foldable.minimum {-# INLINE safeMinimum #-} safeFoldr1 :: (Element t -> Element t -> Element t) -> t -> Maybe (Element t) safeFoldr1 f xs = foldr mf Nothing xs where mf x m = Just (case m of Nothing -> x Just y -> f x y) {-# INLINE safeFoldr1 #-} safeFoldl1 :: (Element t -> Element t -> Element t) -> t -> Maybe (Element t) safeFoldl1 f xs = foldl mf Nothing xs where mf m y = Just (case m of Nothing -> y Just x -> f x y) {-# INLINE safeFoldl1 #-}",272,399,2025-11-07 11:56:58.091640,2025-11-07 11:56:58.091640 universum,unknown,Universum.Container.Class,One,src/Universum/Container/Class.hs:809:7-9,"class One x where type OneItem x one :: OneItem x -> x",809,812,2025-11-07 11:56:58.091684,2025-11-07 11:56:58.091684 universum,unknown,Universum.String.Conversion,ConvertUtf8,src/Universum/String/Conversion.hs:72:7-17,"class ConvertUtf8 a b where encodeUtf8 :: a -> b decodeUtf8 :: b -> a decodeUtf8Strict :: b -> Either T.UnicodeException a",72,99,2025-11-07 11:56:58.091690,2025-11-07 11:56:58.091690 universum,unknown,Universum.String.Conversion,ToText,src/Universum/String/Conversion.hs:132:7-12,"class ToText a where toText :: a -> T.Text",132,133,2025-11-07 11:56:58.091696,2025-11-07 11:56:58.091696 universum,unknown,Universum.String.Conversion,ToLText,src/Universum/String/Conversion.hs:145:7-13,"class ToLText a where toLText :: a -> LT.Text",145,146,2025-11-07 11:56:58.091701,2025-11-07 11:56:58.091701 universum,unknown,Universum.String.Conversion,ToString,src/Universum/String/Conversion.hs:158:7-14,"class ToString a where toString :: a -> String",158,159,2025-11-07 11:56:58.091707,2025-11-07 11:56:58.091707 unliftio-core,unknown,Control.Monad.IO.Unlift,MonadUnliftIO,src/Control/Monad/IO/Unlift.hs:65:20-32,"class MonadIO m => MonadUnliftIO m where withRunInIO :: ((forall a. m a -> IO a) -> IO b) -> m b",65,71,2025-11-07 11:57:05.813975,2025-11-07 11:57:05.813975 utf8,unknown,Codec.Binary.UTF8.Light,UTF8,src/Codec/Binary/UTF8/Light.hs:79:7-10,"class UTF8 a where encode :: a -> ByteString decode :: ByteString -> a",79,81,2025-11-07 11:57:12.260028,2025-11-07 11:57:12.260028 utf8-string,unknown,Codec.Binary.UTF8.Generic,UTF8Bytes,Codec/Binary/UTF8/Generic.hs:48:25-33,"class (Num s, Ord s) => UTF8Bytes b s | b -> s where bsplit :: s -> b -> (b, b) bdrop :: s -> b -> b buncons :: b -> Maybe (Word8, b) elemIndex :: Word8 -> b -> Maybe s empty :: b null :: b -> Bool pack :: [Word8] -> b tail :: b -> b",48,56,2025-11-07 11:57:13.760403,2025-11-07 11:57:13.760403 uuid-types,unknown,Data.UUID.Types.Internal.Builder,ByteSource,src/Data/UUID/Types/Internal/Builder.hs:70:7-16,"class ByteSource w where (/-/) :: ByteSink w g -> w -> g",70,72,2025-11-07 11:57:18.424066,2025-11-07 11:57:18.424066 validation,unknown,Data.Validation,Validate,src/Data/Validation.hs:305:7-14,"class Validate f where _Validation :: Iso (f e a) (f g b) (Validation e a) (Validation g b) _Either :: Iso (f e a) (f g b) (Either e a) (Either g b) _Either = _Validation . iso toEither fromEither {-# INLINE _Either #-}",305,312,2025-11-07 11:57:19.898465,2025-11-07 11:57:19.898465 xml,unknown,Text.XML.Light,Node,Text/XML/Light.hs:54:7-10,"class Node t where node :: QName -> t -> Element",54,55,2025-11-07 11:58:10.583220,2025-11-07 11:58:10.583220 vector,unknown,Utilities,TestData,tests/Utilities.hs:64:55-62,"class (Testable (EqTest a), Conclusion (EqTest a)) => TestData a where type Model a type EqTest a model :: a -> Model a unmodel :: Model a -> a equal :: a -> a -> EqTest a",64,70,2025-11-07 11:57:24.983375,2025-11-07 11:57:24.983375 vector,unknown,Utilities,Conclusion,tests/Utilities.hs:221:7-16,"class Conclusion p where type Predicate p predicate :: Predicate p -> p -> p",221,224,2025-11-07 11:57:24.983392,2025-11-07 11:57:24.983392 vector,unknown,Data.Vector.Unboxed.Base,Unbox,src/Data/Vector/Unboxed/Base.hs:76:51-55,"class (G.Vector Vector a, M.MVector MVector a) => Unbox a",76,76,2025-11-07 11:57:24.983399,2025-11-07 11:57:24.983399 vector,unknown,Data.Vector.Unboxed.Base,IsoUnbox,src/Data/Vector/Unboxed/Base.hs:284:7-14,"class IsoUnbox a b where toURepr :: a -> b default toURepr :: (Generic a, Generic b, Coercible (Rep a ()) (Rep b ())) => a -> b toURepr = to . idU . coerce . idU . from fromURepr :: b -> a default fromURepr :: (Generic a, Generic b, Coercible (Rep b ()) (Rep a ())) => b -> a fromURepr = to . idU . coerce . idU . from",284,292,2025-11-07 11:57:24.983404,2025-11-07 11:57:24.983404 vector,unknown,Data.Vector.Generic.Base,Vector,src/Data/Vector/Generic/Base.hs:56:32-37,"class MVector (Mutable v) a => Vector v a where basicUnsafeFreeze :: Mutable v s a -> ST s (v a) basicUnsafeThaw :: v a -> ST s (Mutable v s a) basicLength :: v a -> Int basicUnsafeSlice :: Int "" starting index"" -> Int "" length"" -> v a -> v a basicUnsafeIndexM :: v a -> Int -> Box a basicUnsafeCopy :: Mutable v s a -> v a -> ST s () {-# INLINE basicUnsafeCopy #-} basicUnsafeCopy !dst !src = do_copy 0 where !n = basicLength src do_copy i | i < n = do x <- liftBox $ basicUnsafeIndexM src i M.basicUnsafeWrite dst i x do_copy (i + 1) | otherwise = return () elemseq :: v a -> a -> b -> b {-# INLINE elemseq #-} elemseq _ = \ _ x -> x {-# MINIMAL basicUnsafeFreeze, basicUnsafeThaw, basicLength, basicUnsafeSlice, basicUnsafeIndexM #-}",56,147,2025-11-07 11:57:24.983414,2025-11-07 11:57:24.983414 vector,unknown,Data.Vector.Generic.Mutable.Base,MVector,src/Data/Vector/Generic/Mutable/Base.hs:30:7-13,"class MVector v a where basicLength :: v s a -> Int basicUnsafeSlice :: Int "" starting index"" -> Int "" length of the slice"" -> v s a -> v s a basicOverlaps :: v s a -> v s a -> Bool basicUnsafeNew :: Int -> ST s (v s a) basicInitialize :: v s a -> ST s () basicUnsafeReplicate :: Int -> a -> ST s (v s a) basicUnsafeRead :: v s a -> Int -> ST s a basicUnsafeWrite :: v s a -> Int -> a -> ST s () basicClear :: v s a -> ST s () basicSet :: v s a -> a -> ST s () basicUnsafeCopy :: v s a "" target"" -> v s a "" source"" -> ST s () basicUnsafeMove :: v s a "" target"" -> v s a "" source"" -> ST s () basicUnsafeGrow :: v s a -> Int -> ST s (v s a) {-# INLINE basicUnsafeReplicate #-} basicUnsafeReplicate n x = do v <- basicUnsafeNew n basicSet v x return v {-# INLINE basicClear #-} basicClear _ = return () {-# INLINE basicSet #-} basicSet !v x | n == 0 = return () | otherwise = do basicUnsafeWrite v 0 x do_set 1 where !n = basicLength v do_set i | 2 * i < n = do basicUnsafeCopy (basicUnsafeSlice i i v) (basicUnsafeSlice 0 i v) do_set (2 * i) | otherwise = basicUnsafeCopy (basicUnsafeSlice i (n - i) v) (basicUnsafeSlice 0 (n - i) v) {-# INLINE basicUnsafeCopy #-} basicUnsafeCopy !dst !src = do_copy 0 where !n = basicLength src do_copy i | i < n = do x <- basicUnsafeRead src i basicUnsafeWrite dst i x do_copy (i + 1) | otherwise = return () {-# INLINE basicUnsafeMove #-} basicUnsafeMove !dst !src | basicOverlaps dst src = do srcCopy <- basicUnsafeNew (basicLength src) basicUnsafeCopy srcCopy src basicUnsafeCopy dst srcCopy | otherwise = basicUnsafeCopy dst src {-# INLINE basicUnsafeGrow #-} basicUnsafeGrow v by = do v' <- basicUnsafeNew (n + by) basicUnsafeCopy (basicUnsafeSlice 0 n v') v return v' where n = basicLength v {-# MINIMAL basicLength, basicUnsafeSlice, basicOverlaps, basicUnsafeNew, basicInitialize, basicUnsafeRead, basicUnsafeWrite #-}",30,154,2025-11-07 11:57:24.983428,2025-11-07 11:57:24.983428 vector-algorithms,unknown,Data.Vector.Algorithms.AmericanFlag,Lexicographic,src/Data/Vector/Algorithms/AmericanFlag.hs:65:7-19,"class Lexicographic e where extent :: e -> Int size :: Proxy e -> Int index :: Int -> e -> Int",65,75,2025-11-07 11:57:27.003575,2025-11-07 11:57:27.003575 vector-algorithms,unknown,Data.Vector.Algorithms.Radix,Radix,src/Data/Vector/Algorithms/Radix.hs:58:7-11,"class Radix e where passes :: e -> Int size :: e -> Int radix :: Int -> e -> Int",58,64,2025-11-07 11:57:27.003591,2025-11-07 11:57:27.003591 wai-extra,unknown,Network.Wai.UrlMap,ToApplication,Network/Wai/UrlMap.hs:81:7-19,"class ToApplication a where toApplication :: a -> Application",81,82,2025-11-07 11:57:42.670966,2025-11-07 11:57:42.670966 witherable,unknown,Witherable,Filterable,src/Witherable.hs:87:20-29,"class Functor f => Filterable f where mapMaybe :: (a -> Maybe b) -> f a -> f b mapMaybe f = catMaybes . fmap f {-# INLINE mapMaybe #-} catMaybes :: f (Maybe a) -> f a catMaybes = mapMaybe id {-# INLINE catMaybes #-} filter :: (a -> Bool) -> f a -> f a filter f = mapMaybe $ \ a -> if f a then Just a else Nothing {-# INLINE filter #-} {-# MINIMAL mapMaybe | catMaybes #-}",87,103,2025-11-07 11:57:54.904687,2025-11-07 11:57:54.904687 witherable,unknown,Witherable,Witherable,src/Witherable.hs:147:42-51,"class (T.Traversable t, Filterable t) => Witherable t where wither :: Applicative f => (a -> f (Maybe b)) -> t a -> f (t b) wither f = fmap catMaybes . T.traverse f {-# INLINE wither #-} witherM :: Monad m => (a -> m (Maybe b)) -> t a -> m (t b) witherM = wither filterA :: Applicative f => (a -> f Bool) -> t a -> f (t a) filterA f = wither $ \ a -> (\ b -> if b then Just a else Nothing) <$> f a witherMap :: (Applicative m) => (t b -> r) -> (a -> m (Maybe b)) -> t a -> m r witherMap p f = fmap p . wither f {-# INLINE witherMap #-} {-# MINIMAL #-}",147,168,2025-11-07 11:57:54.904704,2025-11-07 11:57:54.904704 witherable,unknown,Witherable,FilterableWithIndex,src/Witherable.hs:468:47-65,"class (FunctorWithIndex i t, Filterable t) => FilterableWithIndex i t | t -> i where imapMaybe :: (i -> a -> Maybe b) -> t a -> t b imapMaybe f = catMaybes . imap f {-# INLINE imapMaybe #-} ifilter :: (i -> a -> Bool) -> t a -> t a ifilter f = imapMaybe $ \ i a -> if f i a then Just a else Nothing {-# INLINE ifilter #-}",468,476,2025-11-07 11:57:54.904715,2025-11-07 11:57:54.904715 witherable,unknown,Witherable,WitherableWithIndex,src/Witherable.hs:479:51-69,"class (TraversableWithIndex i t, Witherable t) => WitherableWithIndex i t | t -> i where iwither :: (Applicative f) => (i -> a -> f (Maybe b)) -> t a -> f (t b) iwither f = fmap catMaybes . itraverse f iwitherM :: (Monad m) => (i -> a -> m (Maybe b)) -> t a -> m (t b) iwitherM = iwither ifilterA :: (Applicative f) => (i -> a -> f Bool) -> t a -> f (t a) ifilterA f = iwither (\ i a -> (\ b -> if b then Just a else Nothing) <$> f i a)",479,491,2025-11-07 11:57:54.904724,2025-11-07 11:57:54.904724 wl-pprint-annotated,unknown,Text.PrettyPrint.Annotated.WL,Pretty,src/Text/PrettyPrint/Annotated/WL.hs:520:7-12,"class Pretty a where pretty :: a -> Doc b prettyList :: [a] -> Doc b prettyList = list . map pretty default pretty :: Show a => a -> Doc b pretty = text . show",520,526,2025-11-07 11:57:56.499362,2025-11-07 11:57:56.499362 x509,unknown,Data.X509.Ext,Extension,Data/X509/Ext.hs:78:7-15,"class Extension a where extOID :: a -> OID extHasNestedASN1 :: Proxy a -> Bool extEncode :: a -> [ASN1] extDecode :: [ASN1] -> Either String a extDecodeBs :: B.ByteString -> Either String a extDecodeBs = (either (Left . show) Right . decodeASN1' BER) >=> extDecode extEncodeBs :: a -> B.ByteString extEncodeBs = encodeASN1' DER . extEncode",78,88,2025-11-07 11:58:02.734669,2025-11-07 11:58:02.734669 xeno,unknown,Xeno.SAX,StringLike,src/Xeno/SAX.hs:38:7-16,"class StringLike str where s_index' :: str -> Int -> Word8 elemIndexFrom' :: Word8 -> str -> Int -> Maybe Int drop' :: Int -> str -> str substring' :: str -> Int -> Int -> ByteString toBS :: str -> ByteString",38,43,2025-11-07 11:58:09.105176,2025-11-07 11:58:09.105176 xml,unknown,Text.XML.Light.Lexer,XmlSource,Text/XML/Light/Lexer.hs:15:7-15,"class XmlSource s where uncons :: s -> Maybe (Char, s)",15,16,2025-11-07 11:58:10.583232,2025-11-07 11:58:10.583232 xml-conduit,unknown,Text.XML.Cursor,Boolean,src/Text/XML/Cursor.hs:98:7-13,"class Boolean a where bool :: a -> Bool",98,99,2025-11-07 11:58:12.186420,2025-11-07 11:58:12.186420 xmlbf,unknown,Xmlbf,FromXml,lib/Xmlbf.hs:308:7-13,"class FromXml a where fromXml :: Monad m => ParserT m a",308,316,2025-11-07 11:58:15.201793,2025-11-07 11:58:15.201793 xmlbf,unknown,Xmlbf,ToXml,lib/Xmlbf.hs:791:7-11,"class ToXml a where toXml :: a -> [Node]",791,799,2025-11-07 11:58:15.201808,2025-11-07 11:58:15.201808 yaml,unknown,Data.Yaml.Parser,FromYaml,src/Data/Yaml/Parser.hs:106:7-14,"class FromYaml a where fromYaml :: YamlValue -> YamlParser a",106,107,2025-11-07 11:58:18.296769,2025-11-07 11:58:18.296769 yaml,unknown,Data.Yaml.Builder,ToYaml,src/Data/Yaml/Builder.hs:68:7-12,"class ToYaml a where toYaml :: a -> YamlBuilder",68,69,2025-11-07 11:58:18.296784,2025-11-07 11:58:18.296784