/** * @since 0.24.0 */ import type { TypeLambda } from "effect/HKT" import type { FlatMap } from "./FlatMap.js" import type { Pointed } from "./Pointed.js" /** * @category type class * @since 0.24.0 */ export interface Monad extends FlatMap, Pointed {}