Implementation and Documentation

This commit is contained in:
vegowotenks 2025-05-02 22:27:45 +02:00
commit 480b499ddd
10 changed files with 386 additions and 0 deletions

36
Infinitree.cabal Normal file
View file

@ -0,0 +1,36 @@
cabal-version: 2.2
-- This file has been generated from package.yaml by hpack version 0.38.0.
--
-- see: https://github.com/sol/hpack
name: Infinitree
version: 0.1.0.0
synopsis: Infinitely deep trees for lazy stateless memoization
description: Please see the README on GitHub at <https://github.com/githubuser/Infinitree#readme>
author: VegOwOtenks
maintainer: vegowotenks@jossco.de
copyright: 2025 VegOwOtenks
license: AGPL-3.0-or-later
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
CHANGELOG.md
library
exposed-modules:
Data.Infinitree
Data.Infinitree.Examples
other-modules:
Paths_Infinitree
autogen-modules:
Paths_Infinitree
hs-source-dirs:
src
ghc-options: -Wall -Wextra -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints
build-depends:
adjunctions
, base >=4.7 && <5
, distributive
default-language: Haskell2010