Memo

public enum Memo<T> : Equatable where T : Equatable
extension Memo: Hashable where T: Hashable
extension Memo: Sendable where T: Sendable

The state of memoization of a computation, including an “in progress” state that allows us to detect cycles.