package
Version:
v0.9.2
Opens a new window with list of versions in this module.
Published: Jan 18, 2023
License: MIT
Opens a new window with license information.
Imports: 3
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Construction[F_, A any] interface {
New(...A) F_
Cons(A, F_) F_
}
type Foldable[F_, A any] struct{ Seq[F_, A] }
Foldable Sequence
Fold sequence with Monoid
Higher-Kinded Sequence type
type Query[F_, A any] interface {
Length(F_) int
IsEmpty(F_) bool
}
Type is opaque type to define polymorphic context of Seq.
It makes HKT typesafe in the context of sequence trait
type View[F_, A any] interface {
Head(F_) A
Tail(F_) F_
}
Source Files
¶
Directories
¶
Click to show internal directories.
Click to hide internal directories.