haskellite 0.0.2 copy "haskellite: ^0.0.2" to clipboard
haskellite: ^0.0.2 copied to clipboard

Haskell-inspired functionality for Dart. Provides useful types and syntaxes for more concise, functional-style programming.

Dart CI Coverage

haskellite #

Haskell-like functionality for Dart

Features #

  • ✅ Open Source
  • ✅ Fully Tested and Documented
  • ✅ Lightweight and Fast
  • ✅ Pure Dart (no Flutter dependencies)
  • ✅ Cross-platform

Types #

  • Maybe<T> - Represents a value or the absence of a value.
  • Either<L, R> - Represents a value of type L or a value of type R
  • Result<T> - Represents the result of a computation, either succeeding with a value, or failing with an error
  • RandomVariable<T> - Describes a variable with a random component, allowing for lazy evaluation and other utilities (convenient reuse/caching/mocking). Inspired by Haskell's strict handling of randomness

Extensions #

  • Iterable
    • head, tail, init, lastMaybe (to avoid naming conflicts)
    • fold1 - like fold but without an initial value
    • scan and scan1 - like fold, but returning an Iterable of all intermediate values
    • intersperse - inserts elements in between existing elements
  • int
    • 1.to(5) - a replacement for Haskell's [1..5]
    • 1.toInfinity() - a replacement for Haskell's [1..]

And More #

  • curry and uncurry - easy partial function application in Dart
  • repeat and Iterable.cycle - create a list of repeating values

Contributing #

Suggestions, feedback and pull requests welcome at Github

4
likes
40
pub points
0%
popularity

Publisher

verified publishercmrn.dev

Haskell-inspired functionality for Dart. Provides useful types and syntaxes for more concise, functional-style programming.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

More

Packages that depend on haskellite