Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

isReplete

import { isReplete } from "https://github.gh-proxy.cn/raw.githubusercontent.com/baetheus/fun/main/datum.ts";

Check if a Datum is in the Replete state.

@example
import { isReplete, initial, refresh, replete } from "./datum.ts";

console.log(isReplete(initial)); // false
console.log(isReplete(refresh("data"))); // false
console.log(isReplete(replete("data"))); // true
function isReplete<A>(ta: Datum<A>): ta is Replete<A>;
§
isReplete<A>(ta: Datum<A>): ta is Replete<A>
[src]

§Type Parameters

§Parameters

§Return Type