Socket
Socket
Sign inDemoInstall

@effect/data

Package Overview
Dependencies
Maintainers
3
Versions
79
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@effect/data - npm Package Compare versions

Comparing version 0.7.3 to 0.7.4

26

Chunk.d.ts

@@ -98,3 +98,3 @@ /**

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -109,3 +109,3 @@ export declare const append: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -120,3 +120,3 @@ export declare const prepend: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -131,3 +131,3 @@ export declare const take: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -142,3 +142,3 @@ export declare const drop: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -153,3 +153,3 @@ export declare const dropRight: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -161,3 +161,3 @@ export declare const dropWhile: {

/**
* @category mutations
* @category utils
* @since 1.0.0

@@ -175,3 +175,3 @@ */

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -771,3 +771,3 @@ export declare const concat: {

*
* @category mutations
* @category utils
* @since 1.0.0

@@ -783,3 +783,3 @@ */

*
* @category mutations
* @category utils
* @since 1.0.0

@@ -792,3 +792,3 @@ */

/**
* @category mutations
* @category utils
* @since 1.0.0

@@ -804,3 +804,3 @@ */

*
* @category mutations
* @category utils
* @since 1.0.0

@@ -813,3 +813,3 @@ */

/**
* @category mutations
* @category utils
* @since 1.0.0

@@ -816,0 +816,0 @@ */

@@ -238,3 +238,3 @@ "use strict";

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -247,3 +247,3 @@ exports.unsafeGet = unsafeGet;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -256,3 +256,3 @@ exports.append = append;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -273,3 +273,3 @@ exports.prepend = prepend;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -290,3 +290,3 @@ exports.take = take;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -299,3 +299,3 @@ exports.drop = drop;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -313,3 +313,3 @@ exports.dropRight = dropRight;

/**
* @category mutations
* @category utils
* @since 1.0.0

@@ -323,3 +323,3 @@ */

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -1095,3 +1095,3 @@ exports.prependAllNonEmpty = prependAllNonEmpty;

*
* @category mutations
* @category utils
* @since 1.0.0

@@ -1105,3 +1105,3 @@ */

*
* @category mutations
* @category utils
* @since 1.0.0

@@ -1112,3 +1112,3 @@ */

/**
* @category mutations
* @category utils
* @since 1.0.0

@@ -1122,3 +1122,3 @@ */

*
* @category mutations
* @category utils
* @since 1.0.0

@@ -1129,3 +1129,3 @@ */

/**
* @category mutations
* @category utils
* @since 1.0.0

@@ -1132,0 +1132,0 @@ */

@@ -165,3 +165,3 @@ /**

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -273,3 +273,3 @@ export declare const add: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -305,3 +305,3 @@ export declare const merge: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -311,3 +311,13 @@ export declare const pick: <Services, S extends Array<ValidTagsById<Services>>>(...tags: S) => (self: Context<Services>) => Context<{

}[number]>;
/**
* @since 1.0.0
* @category models
*/
export type GenericTag = TracedTag<any, any> | Tag<any, any>;
/**
* @since 1.0.0
* @category guards
*/
export declare const isGenericTag: (u: unknown) => u is GenericTag;
export {};
//# sourceMappingURL=Context.d.ts.map

@@ -6,3 +6,3 @@ "use strict";

});
exports.unsafeGet = exports.pick = exports.merge = exports.make = exports.isTag = exports.isContext = exports.getOption = exports.get = exports.empty = exports.add = exports.Tag = void 0;
exports.unsafeGet = exports.pick = exports.merge = exports.make = exports.isTag = exports.isGenericTag = exports.isContext = exports.getOption = exports.get = exports.empty = exports.add = exports.Tag = void 0;
var C = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/data/internal/Context"));

@@ -115,3 +115,3 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -215,3 +215,3 @@ exports.make = make;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -245,3 +245,3 @@ exports.getOption = getOption;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -251,2 +251,19 @@ exports.merge = merge;

exports.pick = pick;
const EffectTypeId = /*#__PURE__*/Symbol.for("@effect/io/Effect");
/**
* @since 1.0.0
* @category guards
*/
const isGenericTag = u => {
if (isTag(u)) {
return true;
}
// @ts-expect-error
if (typeof u === "object" && u !== null && EffectTypeId in u && u["_tag"] === "Traced") {
// @ts-expect-error
return isGenericTag(u["i0"]);
}
return false;
};
exports.isGenericTag = isGenericTag;
//# sourceMappingURL=Context.js.map

@@ -150,3 +150,3 @@ /**

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -162,3 +162,3 @@ export declare const orElseResult: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -176,3 +176,3 @@ export declare const transform: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -185,3 +185,3 @@ export declare const update: <A>() => Differ<A, (a: A) => A>;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -194,3 +194,3 @@ export declare const updateWith: <A>(f: (x: A, y: A) => A) => Differ<A, (a: A) => A>;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -197,0 +197,0 @@ export declare const zip: {

@@ -95,3 +95,3 @@ "use strict";

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -105,3 +105,3 @@ exports.hashSet = hashSet;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -117,3 +117,3 @@ exports.orElseResult = orElseResult;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -127,3 +127,3 @@ exports.transform = transform;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -137,3 +137,3 @@ exports.update = update;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -140,0 +140,0 @@ exports.updateWith = updateWith;

@@ -44,3 +44,3 @@ /**

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -47,0 +47,0 @@ export declare const combine: {

@@ -36,3 +36,3 @@ "use strict";

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -39,0 +39,0 @@ exports.diff = diff;

@@ -42,3 +42,3 @@ /**

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -45,0 +45,0 @@ export declare const combine: {

@@ -33,3 +33,3 @@ "use strict";

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -36,0 +36,0 @@ exports.diff = diff;

@@ -45,3 +45,3 @@ /**

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -48,0 +48,0 @@ export declare const combine: {

@@ -36,3 +36,3 @@ "use strict";

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -39,0 +39,0 @@ exports.diff = diff;

@@ -41,3 +41,3 @@ /**

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -44,0 +44,0 @@ export declare const combine: {

@@ -35,3 +35,3 @@ "use strict";

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -38,0 +38,0 @@ exports.diff = diff;

@@ -46,3 +46,3 @@ /**

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -49,0 +49,0 @@ export declare const combine: {

@@ -36,3 +36,3 @@ "use strict";

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -39,0 +39,0 @@ exports.diff = diff;

@@ -125,3 +125,3 @@ /**

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -164,3 +164,3 @@ export declare const set: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -172,3 +172,3 @@ export declare const beginMutation: <K, V>(self: HashMap<K, V>) => HashMap<K, V>;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -180,3 +180,3 @@ export declare const endMutation: <K, V>(self: HashMap<K, V>) => HashMap<K, V>;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -196,3 +196,3 @@ export declare const mutate: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -214,3 +214,3 @@ export declare const modifyAt: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -225,3 +225,3 @@ export declare const modifyHash: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -236,3 +236,3 @@ export declare const modify: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -248,3 +248,3 @@ export declare const union: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -259,3 +259,3 @@ export declare const remove: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -262,0 +262,0 @@ export declare const removeMany: {

@@ -101,3 +101,3 @@ "use strict";

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -142,3 +142,3 @@ exports.hasHash = hasHash;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -151,3 +151,3 @@ exports.size = size;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -160,3 +160,3 @@ exports.beginMutation = beginMutation;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -174,3 +174,3 @@ exports.endMutation = endMutation;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -190,3 +190,3 @@ exports.mutate = mutate;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -199,3 +199,3 @@ exports.modifyAt = modifyAt;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -208,3 +208,3 @@ exports.modifyHash = modifyHash;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -218,3 +218,3 @@ exports.modify = modify;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -227,3 +227,3 @@ exports.union = union;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -230,0 +230,0 @@ exports.remove = remove;

@@ -110,3 +110,3 @@ /**

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -118,3 +118,3 @@ export declare const beginMutation: <A>(self: HashSet<A>) => HashSet<A>;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -126,3 +126,3 @@ export declare const endMutation: <A>(self: HashSet<A>) => HashSet<A>;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -137,3 +137,3 @@ export declare const mutate: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -148,3 +148,3 @@ export declare const add: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -163,3 +163,3 @@ export declare const remove: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -178,3 +178,3 @@ export declare const difference: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -193,3 +193,3 @@ export declare const intersection: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -206,3 +206,3 @@ export declare const union: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -209,0 +209,0 @@ export declare const toggle: {

@@ -100,3 +100,3 @@ "use strict";

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -109,3 +109,3 @@ exports.size = size;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -118,3 +118,3 @@ exports.beginMutation = beginMutation;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -127,3 +127,3 @@ exports.endMutation = endMutation;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -136,3 +136,3 @@ exports.mutate = mutate;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -149,3 +149,3 @@ exports.add = add;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -162,3 +162,3 @@ exports.remove = remove;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -175,3 +175,3 @@ exports.difference = difference;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -186,3 +186,3 @@ exports.intersection = intersection;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -189,0 +189,0 @@ exports.union = union;

@@ -50,3 +50,3 @@ import * as Option from "@effect/data/Option";

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -62,3 +62,3 @@ export declare const modify: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -71,3 +71,3 @@ export declare const modifyAt: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -80,3 +80,3 @@ export declare const remove: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -83,0 +83,0 @@ export declare const set: {

@@ -79,3 +79,3 @@ "use strict";

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -92,3 +92,3 @@ exports.has = has;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -107,3 +107,3 @@ exports.modify = modify;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -117,3 +117,3 @@ exports.modifyAt = modifyAt;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -120,0 +120,0 @@ exports.remove = remove;

@@ -77,3 +77,3 @@ declare const TypeId: unique symbol;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -85,3 +85,3 @@ export declare const reset: <A>(self: MutableList<A>) => MutableList<A>;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -96,3 +96,3 @@ export declare const append: {

* @since 0.0.1
* @category mutations
* @category utils
*/

@@ -104,3 +104,3 @@ export declare const shift: <A>(self: MutableList<A>) => A | undefined;

* @since 0.0.1
* @category mutations
* @category utils
*/

@@ -112,3 +112,3 @@ export declare const pop: <A>(self: MutableList<A>) => A | undefined;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -115,0 +115,0 @@ export declare const prepend: {

@@ -154,3 +154,3 @@ "use strict";

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -169,3 +169,3 @@ exports.forEach = forEach;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -193,3 +193,3 @@ exports.reset = reset;

* @since 0.0.1
* @category mutations
* @category utils
*/

@@ -209,3 +209,3 @@ exports.append = append;

* @since 0.0.1
* @category mutations
* @category utils
*/

@@ -225,3 +225,3 @@ exports.shift = shift;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -228,0 +228,0 @@ exports.pop = pop;

@@ -80,3 +80,3 @@ /**

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -93,3 +93,3 @@ export declare const offer: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -109,3 +109,3 @@ export declare const offerAll: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -122,3 +122,3 @@ export declare const poll: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -125,0 +125,0 @@ export declare const pollUpTo: {

@@ -103,3 +103,3 @@ "use strict";

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -121,3 +121,3 @@ exports.capacity = capacity;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -148,3 +148,3 @@ exports.offer = offer;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -164,3 +164,3 @@ exports.offerAll = offerAll;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -167,0 +167,0 @@ exports.poll = poll;

{
"name": "@effect/data",
"version": "0.7.3",
"version": "0.7.4",
"license": "MIT",

@@ -5,0 +5,0 @@ "repository": {

@@ -61,3 +61,3 @@ /**

*
* @category mutations
* @category utils
* @since 1.0.0

@@ -64,0 +64,0 @@ */

@@ -75,3 +75,3 @@ "use strict";

*
* @category mutations
* @category utils
* @since 1.0.0

@@ -78,0 +78,0 @@ */

@@ -197,3 +197,3 @@ /**

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -334,3 +334,3 @@ export declare const insert: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -337,0 +337,0 @@ export declare const removeFirst: {

@@ -158,3 +158,3 @@ "use strict";

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -276,3 +276,3 @@ exports.has = has;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -279,0 +279,0 @@ exports.reduceWithIndex = reduceWithIndex;

@@ -53,3 +53,3 @@ /**

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -104,3 +104,3 @@ export declare const difference: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -168,3 +168,3 @@ export declare const intersection: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -171,0 +171,0 @@ export declare const union: {

@@ -77,3 +77,3 @@ "use strict";

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -144,3 +144,3 @@ exports.add = add;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -230,3 +230,3 @@ exports.has = has;

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -233,0 +233,0 @@ exports.toggle = toggle;

@@ -333,3 +333,3 @@ /**

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -348,3 +348,3 @@ export const append: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -363,3 +363,3 @@ export const prepend: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -386,3 +386,3 @@ export const take: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -409,3 +409,3 @@ export const drop: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -424,3 +424,3 @@ export const dropRight: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -444,3 +444,3 @@ export const dropWhile: {

/**
* @category mutations
* @category utils
* @since 1.0.0

@@ -468,3 +468,3 @@ */

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -1601,3 +1601,3 @@ export const concat: {

*
* @category mutations
* @category utils
* @since 1.0.0

@@ -1617,3 +1617,3 @@ */

*
* @category mutations
* @category utils
* @since 1.0.0

@@ -1630,3 +1630,3 @@ */

/**
* @category mutations
* @category utils
* @since 1.0.0

@@ -1646,3 +1646,3 @@ */

*
* @category mutations
* @category utils
* @since 1.0.0

@@ -1659,3 +1659,3 @@ */

/**
* @category mutations
* @category utils
* @since 1.0.0

@@ -1662,0 +1662,0 @@ */

@@ -189,3 +189,3 @@ /**

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -313,3 +313,3 @@ export const add: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -346,3 +346,3 @@ export const merge: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -352,1 +352,25 @@ export const pick: <Services, S extends Array<ValidTagsById<Services>>>(

) => (self: Context<Services>) => Context<{ [k in keyof S]: Tag.Identifier<S[k]> }[number]> = C.pick
/**
* @since 1.0.0
* @category models
*/
export type GenericTag = TracedTag<any, any> | Tag<any, any>
const EffectTypeId = Symbol.for("@effect/io/Effect")
/**
* @since 1.0.0
* @category guards
*/
export const isGenericTag = (u: unknown): u is GenericTag => {
if (isTag(u)) {
return true
}
// @ts-expect-error
if (typeof u === "object" && u !== null && EffectTypeId in u && u["_tag"] === "Traced") {
// @ts-expect-error
return isGenericTag(u["i0"])
}
return false
}

@@ -193,3 +193,3 @@ /**

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -211,3 +211,3 @@ export const orElseResult: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -233,3 +233,3 @@ export const transform: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -243,3 +243,3 @@ export const update: <A>() => Differ<A, (a: A) => A> = D.update

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -253,3 +253,3 @@ export const updateWith: <A>(f: (x: A, y: A) => A) => Differ<A, (a: A) => A> = D.updateWith

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -256,0 +256,0 @@ export const zip: {

@@ -56,3 +56,3 @@ /**

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -59,0 +59,0 @@ export const combine: {

@@ -53,3 +53,3 @@ /**

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -56,0 +56,0 @@ export const combine: {

@@ -57,3 +57,3 @@ /**

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -60,0 +60,0 @@ export const combine: {

@@ -52,3 +52,3 @@ /**

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -55,0 +55,0 @@ export const combine: {

@@ -64,3 +64,3 @@ /**

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -67,0 +67,0 @@ export const combine: {

@@ -148,3 +148,3 @@ /**

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -192,3 +192,3 @@ export const set: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -201,3 +201,3 @@ export const beginMutation: <K, V>(self: HashMap<K, V>) => HashMap<K, V> = HM.beginMutation

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -210,3 +210,3 @@ export const endMutation: <K, V>(self: HashMap<K, V>) => HashMap<K, V> = HM.endMutation

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -227,3 +227,3 @@ export const mutate: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -246,3 +246,3 @@ export const modifyAt: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -258,3 +258,3 @@ export const modifyHash: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -270,3 +270,3 @@ export const modify: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -283,3 +283,3 @@ export const union: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -295,3 +295,3 @@ export const remove: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -298,0 +298,0 @@ export const removeMany: {

@@ -126,3 +126,3 @@ /**

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -135,3 +135,3 @@ export const beginMutation: <A>(self: HashSet<A>) => HashSet<A> = HS.beginMutation

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -144,3 +144,3 @@ export const endMutation: <A>(self: HashSet<A>) => HashSet<A> = HS.endMutation

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -156,3 +156,3 @@ export const mutate: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -168,3 +168,3 @@ export const add: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -184,3 +184,3 @@ export const remove: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -200,3 +200,3 @@ export const difference: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -216,3 +216,3 @@ export const intersection: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -230,3 +230,3 @@ export const union: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -233,0 +233,0 @@ export const toggle: {

@@ -111,3 +111,3 @@ /**

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -133,3 +133,3 @@ export const modify: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -161,3 +161,3 @@ export const modifyAt: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -177,3 +177,3 @@ export const remove: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -180,0 +180,0 @@ export const set: {

@@ -170,3 +170,3 @@ /**

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -184,3 +184,3 @@ export const reset = <A>(self: MutableList<A>): MutableList<A> => {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -213,3 +213,3 @@ export const append: {

* @since 0.0.1
* @category mutations
* @category utils
*/

@@ -229,3 +229,3 @@ export const shift = <A>(self: MutableList<A>): A | undefined => {

* @since 0.0.1
* @category mutations
* @category utils
*/

@@ -245,3 +245,3 @@ export const pop = <A>(self: MutableList<A>): A | undefined => {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -248,0 +248,0 @@ export const prepend: {

@@ -129,3 +129,3 @@ /**

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -153,3 +153,3 @@ export const offer: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -186,3 +186,3 @@ export const offerAll: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -208,3 +208,3 @@ export const poll: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -211,0 +211,0 @@ export const pollUpTo: {

@@ -133,3 +133,3 @@ /*

*
* @category mutations
* @category utils
* @since 1.0.0

@@ -136,0 +136,0 @@ */

@@ -223,3 +223,3 @@ /**

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -374,3 +374,3 @@ export const insert: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -377,0 +377,0 @@ export const removeFirst: {

@@ -112,3 +112,3 @@ /**

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -223,3 +223,3 @@ export const difference: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -364,3 +364,3 @@ export const intersection: {

* @since 1.0.0
* @category mutations
* @category utils
*/

@@ -367,0 +367,0 @@ export const union: {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc