Skip to main content
Module

x/set_operations/set_operations.ts>isSubset

🦕 Deno module which provides basic set operations
Latest
function isSubset
import { isSubset } from "https://deno.land/x/set_operations@v1.2.0/set_operations.ts";

Check if every elements in setA is in the setB.

Parameters

setA: Set<T>
setB: Set<T>

Returns

boolean