h&@5P      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~  Safe-Inferred"/16<?storeInfo about a type's serialized length. Either the length is known independently of the value, or the length depends on the value.storeThe  typeclass provides efficient serialization and deserialization to raw pointer addresses.The  and & methods should be defined such that  decodeEx (encode x) == x .store Yields the  of the buffer, in bytes, required to store the encoded representation of the type.Note that the correctness of this function is crucial for the safety of , as it does not do any bounds checking. It is the responsibility of the invoker of  ( and similar functions) to ensure that there's enough space in the output buffer. If  writes beyond, then arbitrary memory can be overwritten, causing undefined behavior and segmentation faults.storeSerializes a value to bytes. It is the responsibility of the caller to ensure that at least the number of bytes required by - are available. These details are handled by  and similar utilities.storeSerialized a value from bytes, throwing exceptions if it encounters invalid data or runs out of input bytes.storeSerializes a value to a -. In order to do this, it first allocates a  of the correct size (based on ), and then uses  to fill it.6Safety of this function depends on correctness of the  instance. If  returns a. The good news is that this isn't an issue if you use well-tested manual instances (such as those from this package) combined with auomatic definition of instances.storeDecodes a value from a . Returns an exception if there's an error while decoding, or if decoding undershoots / overshoots the end of the buffer.storeDecodes a value from a , potentially throwing exceptions. It is an exception to not consume all input. storeDecodes a value from a , potentially throwing exceptions. It is an exception to not consume all input.!store>Get the number of bytes needed to store the given value. See ."storeGiven a  value and a value of the type a, returns its  size.#storeCreate an aggregate < by providing functions to split the input into two pieces.If both of the types are , the result is % and the functions will not be used.$storeCreate an aggregate  by providing functions to split the input into two pieces, as well as ' values to use to measure the results.If both of the input  values are , the result is $ and the functions will not be used.%storeAdds a constant amount to a  value.storeA ( implementation based on an instance of  and .storeA ( implementation based on an instance of . Use this if the type is not .% !"#$%&'( Safe-Inferred()storeGiven the name of a type, generate a Store instance for it, assuming that all type variables also need to be Store instances.Note that when used with datatypes that require type variables, the ScopedTypeVariables extension is required.storeGet a map from the  type of instances to . )*+,-./012 .+,-/0*)12 Safe-Inferred4storeTest a  instance using  smallcheck and .6storeCheck if a given value succeeds in decoding its encoded representation.)456)465 Safe-Inferred"(168;Bstore Implement  for an  of  instances.Note that many monomorphic containers have more efficient implementations (for example, via memcpy).Cstore Implement  for an  of  instances.Note that many monomorphic containers have more efficient implementations (for example, via memcpy).Dstore Implement  for an  of  instances.Note that many monomorphic containers have more efficient implementations (for example, via memcpy).Estore Implement  for an  of  instances.Fstore Implement  for an  of  instances.Gstore Implement  for an  of  instances.Hstore Implement  for an  of where both  and  are  instances.Istore Implement  for an  of where both  and  are  instances.Jstore Implement  for an  of where both  and  are  instances.storeMarker for maps that are encoded in ascending order instead of the descending order mistakenly implemented in J in store versions < 0.4.See  'https://github.com/fpco/store/issues/97.Kstore+Ensure the presence of a given magic value. Throws a  if the value isn't present.LstoreLike H7 but should only be used for ordered containers where  returns an ascending list.MstoreLike I7 but should only be used for ordered containers where  returns an ascending list.NstoreDecode the results of M. using a given function to construct the map.storeImplementation of peek for mutable sequences. The user provides a function for initializing the sequence and a function for mutating an element at a particular index.OstoreSkip n bytes forward.PstoreIsolate the input to n bytes, skipping n bytes forward. Fails if m1 advances the offset beyond the isolated region.hstoreTemplate Haskell Bytes are nearly identical to ByteString, but it can't depend on ByteString.NstoreA function to construct the map from an ascending list such as .   !"#$%&'(=>?@ABCDEFGHIJKLMNOPQRSTUV  !"#$%BCDEFGHIJLMNTUV&'(OPK=>?@AQRS Safe-Inferred h   Safe-Inferred 156;"storeAt compiletime, this yields a hash of the specified datatypes. Not only does this cover the datatypes themselves, but also all transitive dependencies..The resulting expression is a literal of type .storeAt compiletime, this yields a cryptographic hash of the specified , including the definition of things it references (transitively)..The resulting expression is a literal of type .  Safe-Inferred" Safe-Inferred "%&6;$storeWhen set, specifies the hash which is expected to be computed.store= containedBytes >= consumedBytes >= 0The range from ptr to ptr  size will be allocatedThe range from ptr to ptr  containedBytes6 will contain bytes previously copied to the bufferThe buffer contains containedBytes - consumedBytes bytes of data that have been copied to it, but not yet read. They are in the range from ptr  consumedBytes to ptr  containedBytes.The first two invariants are encoded in Liquid Haskell, and can be statically checked.This points to the beginning of the memory allocated for the storeOn any Exception, this will invalidate the ByteBuffer and re-throw the Exception.Invalidating the ) includes freeing the underlying pointer.storeTry to use the  of a  , or throw a  if it's invalid.storeNumber of available bytes in a  (that is, bytes that have been copied to, but not yet read from the .storeAllocates a new ByteBuffer with a given buffer size filling from the given FillBuffer. Note that s created with * have to be deallocated explicitly using /. For automatic deallocation, consider using  instead.storeFree a byte buffer.storePerform some action with a bytebuffer, with automatic allocation and deallocation.storeReset a , i.e. copy all the bytes that have not yet been consumed to the front of the buffer.store!Make sure the buffer is at least minSize bytes long.In order to avoid having to enlarge the buffer too often, we multiply its size by a factor of 1.5 until it is at least minSize bytes long.storeCopy the contents of a  to a .If necessary, the 8 is enlarged and/or already consumed bytes are dropped.store)Will read at most n bytes from the given , in a non-blocking fashion. This function is intended to be used with non-blocking Socket!s, such the ones created by the network package.4Returns how many bytes could be read non-blockingly.storeTry to get a pointer to n bytes from the .Note that the pointer should be used before any other actions are performed on the . It points to some address within the buffer, so operations such as enlarging the buffer or feeding it new data will change the data the pointer points to. This is why this function is called unsafe.storeAs , but instead of returning a  into the contents of the , it returns a  containing the next n7 bytes in the buffer. This involves allocating a new  and copying the n bytes to it.storelocation information: function from which the exception was thrownstorethis - will be invalidated when an Exception occursstore Size of buffer to allocate. If , use the default value of 4MBstoreThe byte buffer.storeInitial length of the . If  , use the default value of 4MB.storenstoreWill be  Left missing when there are only  n-missing bytes left in the .                  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~$#store-0.7.18-JKaeHVOO5ISLnJjhQgwn0uData.Store.InternalData.Store.TH.Internal Data.Store.THData.Store.TypeHash.InternalData.Store.VersionSystem.IO.ByteBufferData.Store.Impl Data.StoreData.Store.TypeHash)store-core-0.4.4.6-LIS8Py6UuZ23Qpc0FMQiOlData.Store.CoredecodeIOPortionWith decodeIOWithdecodeExPortionWith decodeExWith decodeWith tooManyBytes peekException pokeExceptionPoke pokeExMessagepokeExByteIndex PokeExceptionrunPeekPeek peekExMessagepeekExBytesFromEnd PeekException GStorePeek GStorePoke GStoreSizeSizeVarSize ConstSizeStoresizepokepeekencodedecodedecodeExdecodeIOgetSize getSizeWith combineSizecombineSizeWithaddSize genericSize genericPoke genericPeek makeStore deriveStorederiveTupleStoreInstancederiveGenericInstancederiveGenericInstanceFromNamederiveManyStoreFromStorablederiveManyStorePrimVectorderiveManyStoreUnboxVectorgetAllInstanceTypes1 isMonoType$fDeriverStoresmallcheckManyStoreassertRoundtripcheckRoundtrip$fStore(,,,,,,)$fStore(,,,,,) $fStore(,,,,) $fStore(,,,) $fStore(,,) $fStore(,) IsStaticSize toStaticSize StaticSize unStaticSize sizeSequence pokeSequence peekSequencesizeSetpokeSetpeekSetsizeMappokeMappeekMap peekMagic sizeOrdMap pokeOrdMappeekOrdMapWithskipisolatetoStaticSizeExliftStaticSizestaticByteStringExp sizeArray pokeArray peekArray $fStoreRatio$fStoreNatural$fStoreInteger $fStoreUArray $fStoreArray$fStoreHashSet$fStoreHashMap $fStoreMap $fStoreIntMap $fStoreIntSet $fStoreSet $fStoreSeq$fStoreNonEmpty $fStore[] $fStoreText$fStoreByteString$fStoreShortByteString $fStoreBytes$fStoreByteString0 $fStoreVector$fStoreVector0 $fStoreWord $fStoreInt $fStoreChar $fStoreWord8 $fStoreWord32 $fStoreInt64$fStoreStaticSize$fNFDataStaticSize$fIsStaticSizenByteString$fEqStaticSize$fShowStaticSize$fOrdStaticSize$fDataStaticSize$fGenericStaticSize $fStoreConst $fStoreMaybe $fStoreLast $fStoreFirst$fStoreProduct $fStoreSum $fStoreDual $fStore()$fStoreNominalDiffTime$fStoreDiffTime $fStoreFixed$fStoreQuarterOfYear$fStoreQuarter$fStoreFirstWeekType$fStoreDayOfWeek$fStoreFormatExtension$fStoreCalendarDiffTime$fStoreCalendarDiffDays$fStoreSystemTime$fStoreTimeLocale$fStoreZonedTime$fStoreUniversalTime$fStoreUTCTime$fStoreTimeZone$fStoreTimeOfDay$fStoreLocalTime $fStoreDay$fStoreAbsoluteTime $fStoreEither $fStoreBool $fStoreVoid $fStoreAny $fStoreAll$fStoreIdentity$fStoreComplex$fStoreVector1$fStoreVector2$fStoreVector3$fStoreVector4$fStoreVector5$fStoreVector6$fStoreVector7$fStoreVector8$fStoreVector9$fStoreVector10$fStoreVector11$fStoreVector12$fStoreVector13$fStoreVector14$fStoreVector15$fStoreVector16$fStoreVector17$fStoreVector18$fStoreVector19$fStoreVector20$fStoreVector21$fStoreVector22$fStoreVector23$fStoreVector24$fStoreVector25$fStoreVector26$fStoreVector27$fStoreVector28$fStoreVector29$fStoreVector30$fStoreVector31$fStoreVector32$fStoreVector33$fStoreVector34$fStoreVector35$fStoreVector36$fStoreVector37$fStoreVector38$fStoreVector39$fStoreVector40$fStoreVector41$fStoreVector42$fStoreVector43$fStoreVector44$fStoreVector45$fStoreVector46$fStoreVector47$fStoreVector48$fStoreVector49$fStoreVector50$fStoreVector51$fStoreVector52$fStoreVector53$fStoreVector54$fStoreVector55$fStoreVector56$fStoreVector57$fStoreVector58$fStoreVector59$fStoreVector60$fStoreVector61$fStoreVector62$fStoreVector63$fStoreVector64$fStoreVector65$fStoreVector66$fStoreVector67$fStoreVector68$fStoreVector69$fStoreVector70$fStoreVector71$fStoreVector72$fStoreVector73$fStoreVector74$fStoreVector75$fStoreVector76$fStoreVector77$fStoreVector78$fStoreVector79$fStoreVector80$fStoreVector81$fStoreVector82$fStoreVector83$fStoreVector84$fStoreVector85$fStoreVector86$fStoreVector87$fStoreVector88$fStoreVector89$fStoreVector90$fStoreVector91$fStoreVector92$fStoreVector93$fStoreVector94$fStoreVector95$fStoreVector96$fStoreVector97$fStoreVector98$fStoreVector99$fStoreVector100$fStoreVector101$fStoreVector102$fStoreVector103$fStoreVector104$fStoreVector105$fStoreVector106$fStoreVector107$fStoreVector108$fStoreVector109$fStoreVector110$fStoreVector111$fStoreVector112$fStoreVector113$fStorePrimStorable$fStorePortNumber $fStoreFloat $fStoreDouble $fStoreFd $fStoreCUid $fStoreCTimer$fStoreCTcflag $fStoreCSsize $fStoreCSpeed$fStoreCSocklen $fStoreCRLim $fStoreCPid $fStoreCOff $fStoreCNlink $fStoreCNfds $fStoreCMode $fStoreCKey $fStoreCIno $fStoreCId $fStoreCGid$fStoreCFsFilCnt$fStoreCFsBlkCnt $fStoreCDev$fStoreCClockId $fStoreCCc$fStoreCBlkSize$fStoreCBlkCnt $fStoreWord64 $fStoreWord16$fStoreStablePtr$fStoreIoSubSystem $fStorePtr $fStoreFunPtr $fStoreInt8 $fStoreInt32 $fStoreInt16$fStoreFingerprint$fStoreWordPtr $fStoreIntPtr $fStoreCWchar$fStoreCUShort$fStoreCUSeconds $fStoreCULong$fStoreCULLong$fStoreCUIntPtr$fStoreCUIntMax $fStoreCUInt $fStoreCUChar $fStoreCTime $fStoreCSize$fStoreCSigAtomic $fStoreCShort$fStoreCSUSeconds $fStoreCSChar$fStoreCPtrdiff $fStoreCLong $fStoreCLLong$fStoreCIntPtr$fStoreCIntMax $fStoreCInt $fStoreCFloat$fStoreCDouble $fStoreCClock $fStoreCChar $fStoreCBool$fStorePkgName$fStoreNameSpace$fStoreModName$fStorePatSynDir$fStorePatSynArgs $fStoreRole$fStoreInjectivityAnn$fStoreFamilyResultSig$fStoreTypeFamilyHead$fStoreTySynEqn$fStoreAnnTarget$fStoreRuleBndr $fStorePhases$fStoreRuleMatch $fStoreInline $fStorePragma$fStoreFixityDirection $fStoreFixity $fStoreSafety$fStoreCallconv$fStoreForeign$fStoreOverlap $fStoreFunDep$fStoreDerivStrategy$fStoreDerivClause$fStoreSourceStrictness$fStoreSourceUnpackedness $fStoreBang $fStoreCon $fStoreRange $fStoreStmt $fStoreGuard $fStoreBody $fStoreMatch $fStoreExp $fStoreTyLit$fStoreSpecificity$fStoreTyVarBndr $fStoreType $fStoreLit $fStorePat $fStoreClause$fStoreNameFlavour$fStoreOccName $fStoreName $fStoreDec $fStoreInfo HasTypeHashtypeHashTypeHash unTypeHashTaggedunTaggedreifyManyTyDeclstypeHashForNames hashOfTypegetTypeInfosRecursively getConNames getVarNames mkHasTypeHashmkManyHasTypeHashcombineTypeHashes$fNFDataTagged$fLiftBoxedRepTypeHash$fNFDataTypeHash $fStoreTagged $fEqTypeHash $fOrdTypeHash$fShowTypeHash$fStoreTypeHash$fGenericTypeHash $fEqTagged $fOrdTagged $fShowTagged $fDataTagged$fGenericTagged$fDataTypeHash VersionConfigvcExpectedHash vcManualNamevcIgnore vcRenames StoreVersionunStoreVersionhashedVersionConfignamedVersionConfigencodeWithVersionQdecodeWithVersionQ$fEqVersionConfig$fShowVersionConfig$fDataVersionConfig$fGenericVersionConfig$fEqStoreVersion$fShowStoreVersion$fOrdStoreVersion$fDataStoreVersion$fGenericStoreVersion$fStoreStoreVersion ByteBufferByteBufferException _bbeLocation _bbeException totalSizeisEmptyavailableBytesnewfreewithcopyByteString fillFromFd unsafeConsumeconsume$fExceptionByteBufferException$fShowByteBufferException$fEqByteBufferExceptionbytestring-0.11.3.1Data.ByteString.Internal ByteStringghc-prim GHC.TypesInt sizeStorablebaseForeign.StorableStorableData.Typeable.InternalTypeablesizeStorableTy GStorePeekSumgpeekSum GStorePokeSumgpokeSum GStoreSizeSumgsizeSumTypeErrorMessageFitsInByteResult FitsInBytegpeekgpokegsizeSumArity instancesMap getTyHead+th-reify-many-0.1.10-Fid5tbA8M0sGz8JIgtxdSs&Language.Haskell.TH.ReifyMany.InternalTypeclassInstance(hspec-core-2.11.5-CyqqGURpdQj9q431CZgYnFTest.Hspec.Core.Runnerhspec0mono-traversable-1.0.15.3-C5yugcHhH5AEsPxXvXJzb1Data.Sequences IsSequenceData.ContainersIsSetIsMap ContainerKeyMapValuemarkMapPokedInAscendingOrder mapToListpeekMutableSequencecontainers-0.6.5.1Data.Map.Strict.InternalfromDistinctAscListtemplate-haskellLanguage.Haskell.TH.SyntaxTypeBBRefGHC.PtrplusPtr containedconsumedptr bbHandleruseBBRef resetBBRef enlargeBBRefSystem.Posix.TypesFdPtr GHC.MaybeNothing