Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 249 Bytes

README.md

File metadata and controls

11 lines (9 loc) · 249 Bytes

fein

An attempt at implementing some missing data structures in Go using generics.

The following Rust inspired types are implement:

  • FnOnce[T]
  • Option[T]
  • Transform[U, V]
  • Result[T, E]

The following is inspired by Python:

  • Set[T]