Result for 03A6D6129FBFBCC3DF169BAACC70EE6EE3926167

Query result

Key Value
FileName./usr/share/licenses/ghc-strict/LICENSE
FileSize1447
MD59FA0CCB0991FBFE8846C027A053D8CD8
SHA-103A6D6129FBFBCC3DF169BAACC70EE6EE3926167
SHA-25679C71A6ECE44448F34B5395C358367E1C94C2C3924CBF690F251551BD392A185
SSDEEP24:03UnogbOIhrYFThJyhrYFTXAJBN/BTP4W9/1432sQEOk8d6gROF32s3yTtTfRzSW:pOorYJKrYJy7JP4k/1432sHEI32s3utf
TLSHT1B631748B12444BE349F25B51366AA9C0B09DC03C3F23AE061CB9F3985B7B12FD4BB451
tar:gnameroot
tar:unameroot
hashlookup:parent-total95
hashlookup:trust100

Network graph view

Parents (Total: 95)

The searched file hash is included in 95 parent files which include package known and seen by metalookup. A sample is included below:

Key Value
MD549C6A22C9E8A1FBCD259E0BC06C8E89E
PackageArchx86_64
PackageDescriptionThis package provides strict versions of some standard Haskell data types (pairs, Maybe and Either). It also contains strict IO operations.
PackageNameghc-strict
PackageReleaselp150.3.2
PackageVersion0.3.2
SHA-1038F514187D42081B2D8D44B057216233623ED65
SHA-256FAACE55812A17966ED46C244138260F0820967575BC33A790EF854ADC17ECD37
Key Value
MD53330B4AEFC6E3B0953745C6349E2F4DF
PackageArcharmv7hl
PackageDescriptionThis package provides strict versions of some standard Haskell data types (pairs, Maybe and Either). It also contains strict IO operations.
PackageMaintainerFedora Project
PackageNameghc-strict
PackageRelease30.fc34
PackageVersion0.3.2
SHA-1070A78850C233532A70F85AC7D13EF2631A73B0E
SHA-2560D7CF68C6B61935C01B82C368F8A71C6536BEECAE5DF7D58FC07E0C5EB2DDE5B
Key Value
MD5D6B5A6375FBEDCC5742E625B6256A575
PackageArcharmv7hl
PackageDescriptionThis package provides strict versions of some standard Haskell data types (pairs, Maybe and Either). It also contains strict IO operations.
PackageMaintainerFedora Project
PackageNameghc-strict
PackageRelease29.fc33
PackageVersion0.3.2
SHA-109542E0731160DE5AC69524B3A3861224771323C
SHA-256093537B5E35DA7CB5945CB468D27640BD980235977A645608123BF553C4A337C
Key Value
MD56215F6C9DBEA910D9A8BBB1D82CA94CF
PackageArchx86_64
PackageDescriptionThis package provides strict versions of some standard Haskell data types (pairs, Maybe and Either). It also contains strict IO operations.
PackageMaintainerhttps://bugs.opensuse.org
PackageNameghc-strict
PackageReleaselp150.1.8
PackageVersion0.3.2
SHA-10BA8F220B02AC040D1BC83C514F02F546279F111
SHA-2563D0F0A973A4D9A9A969112F9296FBB64576727ED3D5205150B59DA753BEBCF58
Key Value
MD5ABE8F588428E7290A9CF589748739EAA
PackageArchppc64
PackageDescriptionThis package provides strict versions of some standard Haskell data types (pairs, Maybe and Either). It also contains strict IO operations. This package contains the development files.
PackageMaintainerKoji
PackageNameghc-strict-devel
PackageRelease5.fc18
PackageVersion0.3.2
SHA-10C8D7F47CDC29A910A7A489B7F932A952D197F0D
SHA-256626EC505A75D77812CFD4EB021E250A59523FCA7C5098FAE51AD6F92AB24A15E
Key Value
MD5A272FBCCB177DE179AC071BC3CEBB9AC
PackageArchx86_64
PackageDescriptionThis package provides strict versions of some standard Haskell data types (pairs, Maybe and Either). It also contains strict IO operations.
PackageNameghc-strict
PackageReleaselts13.1.2
PackageVersion0.3.2
SHA-1129513B7EEC219AB3C39D7CDBDE1D846993FBA00
SHA-256792148609DEC3D7AF881CA49F2B81CFC73F6D8DD1E7DFEF0ADFAFACF1AB86275
Key Value
MD5AC973D0798DDC35EB025A30820BA5079
PackageArchppc64le
PackageDescriptionThis package provides strict versions of some standard Haskell data types (pairs, Maybe and Either). It also contains strict IO operations.
PackageMaintainerFedora Project
PackageNameghc-strict
PackageRelease13.fc23
PackageVersion0.3.2
SHA-1134234D3DFE37E56229009365724887EBE7A9E2A
SHA-2569E143EB587DDD123A45D0B73704FC6083FA0708547689556742B47D729B0D96C
Key Value
MD57C1CADE92B095FC9E4D203FF01FCF2AB
PackageArchx86_64
PackageDescriptionThis package provides strict versions of some standard Haskell data types (pairs, Maybe and Either). It also contains strict IO operations. It is common knowledge that lazy datastructures can lead to space-leaks. This problem is particularly prominent, when using lazy datastructures to store the state of a long-running application in memory. One common solution to this problem is to use 'seq' and its variants in every piece of code that updates your state. However a much easier solution is to use fully strict types to store such state values. By "fully strict types" we mean types for whose values it holds that, if they are in weak-head normal form, then they are also in normal form. Intuitively, this means that values of fully strict types cannot contain unevaluated thunks. To define a fully strict datatype, one typically uses the following recipe. 1. Make all fields of every constructor strict; i.e., add a bang to all fields. 2. Use only strict types for the fields of the constructors. The second requirement is problematic as it rules out the use of the standard Haskell 'Maybe', 'Either', and pair types. This library solves this problem by providing strict variants of these types and their corresponding standard support functions and type-class instances. Note that this library does currently not provide fully strict lists. They can be added if they are really required. However, in many cases one probably wants to use unboxed or strict boxed vectors from the 'vector' library (<http://hackage.haskell.org/package/vector>) instead of strict lists. Moreover, instead of 'String's one probably wants to use strict 'Text' values from the 'text' library (<http://hackage.haskell.org/package/text>). This library comes with batteries included; i.e., mirror functions and instances of the lazy versions in 'base'. It also includes instances for type-classes from the 'deepseq', 'binary', and 'hashable' packages.
PackageNameghc-strict
PackageRelease9.2
PackageVersion0.4.0.1
SHA-116F41D269DCBF05B62FE446D33260356FB496F96
SHA-2566B0AB59153D9BA6AFC9C9EE7EBEBAD096FB4D319D5D1703B4C2CA254267F17FD
Key Value
MD55D4EB6AEA1C4A2BE61D1FAAFD7C4A491
PackageArchx86_64
PackageDescriptionThis package provides strict versions of some standard Haskell data types (pairs, Maybe and Either). It also contains strict IO operations. It is common knowledge that lazy datastructures can lead to space-leaks. This problem is particularly prominent, when using lazy datastructures to store the state of a long-running application in memory. One common solution to this problem is to use 'seq' and its variants in every piece of code that updates your state. However a much easier solution is to use fully strict types to store such state values. By "fully strict types" we mean types for whose values it holds that, if they are in weak-head normal form, then they are also in normal form. Intuitively, this means that values of fully strict types cannot contain unevaluated thunks. To define a fully strict datatype, one typically uses the following recipe. 1. Make all fields of every constructor strict; i.e., add a bang to all fields. 2. Use only strict types for the fields of the constructors. The second requirement is problematic as it rules out the use of the standard Haskell 'Maybe', 'Either', and pair types. This library solves this problem by providing strict variants of these types and their corresponding standard support functions and type-class instances. Note that this library does currently not provide fully strict lists. They can be added if they are really required. However, in many cases one probably wants to use unboxed or strict boxed vectors from the 'vector' library (<http://hackage.haskell.org/package/vector>) instead of strict lists. Moreover, instead of 'String's one probably wants to use strict 'Text' values from the 'text' library (<http://hackage.haskell.org/package/text>). This library comes with batteries included; i.e., mirror functions and instances of the lazy versions in 'base'. It also includes instances for type-classes from the 'deepseq', 'binary', and 'hashable' packages.
PackageNameghc-strict
PackageRelease4.2
PackageVersion0.4.0.1
SHA-1183D60D9BF6FDB556AC57026464275DD7F427E69
SHA-2562CDA045509C1855E42D56ED4F1090538D2B0814A4272E698A74B364FDA32BD26
Key Value
MD5E5CFB99DAB451F9FB434D534CE28B091
PackageArchx86_64
PackageDescriptionThis package provides strict versions of some standard Haskell data types (pairs, Maybe and Either). It also contains strict IO operations.
PackageNameghc-strict
PackageReleaselts13.1.25
PackageVersion0.3.2
SHA-122743821CFC6698E495B1FCB6258786790A6948F
SHA-256B736B3D4249B281095E91D4BDA205883504B643130E553555487274F70CA270C