diff --git a/classes/_pacote_bloom_filter.BloomFilter.html b/classes/_pacote_bloom_filter.BloomFilter.html index 99ca8f1c9..59d2a0f8a 100644 --- a/classes/_pacote_bloom_filter.BloomFilter.html +++ b/classes/_pacote_bloom_filter.BloomFilter.html @@ -1,4 +1,4 @@ -BloomFilter | Pacote

Type Parameters

  • T extends {
        toString(): string;
    }

Constructors

constructor +BloomFilter | Pacote

Type Parameters

  • T extends {
        toString(): string;
    }

Constructors

Properties

filter hashes seed @@ -6,4 +6,4 @@

Methods

Constructors

Properties

filter: Uint32Array<ArrayBufferLike>
hashes: number
seed: number
size: number

Methods

+

Constructors

Properties

filter: Uint32Array<ArrayBufferLike>
hashes: number
seed: number
size: number

Methods

diff --git a/classes/_pacote_bloom_filter.CountingBloomFilter.html b/classes/_pacote_bloom_filter.CountingBloomFilter.html index 5a9dca807..03909a246 100644 --- a/classes/_pacote_bloom_filter.CountingBloomFilter.html +++ b/classes/_pacote_bloom_filter.CountingBloomFilter.html @@ -1,4 +1,4 @@ -CountingBloomFilter | Pacote

Type Parameters

  • T extends {
        toString(): string;
    }

Constructors

constructor +CountingBloomFilter | Pacote

Type Parameters

  • T extends {
        toString(): string;
    }

Constructors

Properties

filter hashes seed @@ -7,4 +7,4 @@ has remove toJSON -

Constructors

Properties

filter: Uint32Array<ArrayBufferLike>
hashes: number
seed: number
size: number

Methods

+

Constructors

Properties

filter: Uint32Array<ArrayBufferLike>
hashes: number
seed: number
size: number

Methods

diff --git a/classes/_pacote_bloom_search.BloomSearch.html b/classes/_pacote_bloom_search.BloomSearch.html index 32656629a..47e64c037 100644 --- a/classes/_pacote_bloom_search.BloomSearch.html +++ b/classes/_pacote_bloom_search.BloomSearch.html @@ -2,7 +2,7 @@
import { BloomSearch } from '@pacote/bloom-search'

const bs = new BloomSearch({
fields: ['text'],
summary: ['id'],
})

bs.add('id1', { id: 1, text: 'foo bar' })
bs.add('id2', { id: 2, text: 'foo baz' })

bs.search('foo +bar') // => [{ id: 1 }])
bs.search('foo -bar') // => [{ id: 2 }])
-

Type Parameters

Constructors

Type Parameters

Constructors

Properties

errorRate fields index @@ -19,23 +19,23 @@ used to add documents and test the membership of search terms in the added set.

Type Parameters

  • Document extends Record<string, unknown>
  • SummaryField extends string | number | symbol = keyof Document
  • IndexField extends string | number | symbol = keyof Document

Parameters

Returns BloomSearch<Document, SummaryField, IndexField>

Properties

errorRate: number

Error rate used in all Bloom filters to generate document signatures.

-
fields: Record<IndexField, number>

A record containing the name of all indexable fields and their relative +

Returns BloomSearch<Document, SummaryField, IndexField>

Properties

errorRate: number

Error rate used in all Bloom filters to generate document signatures.

+
fields: Record<IndexField, number>

A record containing the name of all indexable fields and their relative weight used to rank search results.

-
index: Index<Document, SummaryField> = ...

Collection containing document summaries and Bloom filter signatures used +

index: Index<Document, SummaryField> = ...

Collection containing document summaries and Bloom filter signatures used to search, with document shorthand reference identifier used as keys.

-
minSize: number

Minimum term cardinality used to calculate the Bloom filter size. This can +

minSize: number

Minimum term cardinality used to calculate the Bloom filter size. This can be used to reduce false positives when dealing with small documents with sparse term frequency distribution.

-
ngrams: number

The n-grams to store in the index. Defaults to 1 (no n-grams).

-
seed: number

Hash seed to use in Bloom Filters, defaults to 0x00c0ffee.

-
summary: SummaryField[]

An array with the names of fields to preserve as summary, and which are +

ngrams: number

The n-grams to store in the index. Defaults to 1 (no n-grams).

+
seed: number

Hash seed to use in Bloom Filters, defaults to 0x00c0ffee.

+
summary: SummaryField[]

An array with the names of fields to preserve as summary, and which are returned as search results for the matching documents. It is recommended to keep only fields necessary to identify a document (e.g. title, URL, short description) to keep space requirements down.

-
termFrequencyBuckets: number[]

Optimises storage by grouping indexed terms into buckets according to term +

termFrequencyBuckets: number[]

Optimises storage by grouping indexed terms into buckets according to term frequency in a document.

-

Methods

  • Indexes a single document with its unique reference identifier.

    +

Methods

  • Indexes a single document with its unique reference identifier.

    Parameters

    • ref: string

      A unique reference identifier for the document. Adding another document with the same reference replaces the document on the search index.

      @@ -43,7 +43,7 @@
    • Optionallanguage: string

      Language identifier which is fed back into the stemmer and stopwords callback functions to help decide how to handle these steps.

      -

    Returns void

  • Replaces the instance's index with an index from another instance. Its +

Returns void

  • Replaces the instance's index with an index from another instance. Its primary use case is to rehydrate the index from a static file or payload.

    NB: Calling this method will not change any other attributes in the instance. It is up to developers to ensure that the instances were @@ -51,9 +51,9 @@ function. Incompatible stemmer implementations may cause matches to not be found in the rehydrated index.

    Parameters

    Returns void

  • Removes an indexed document.

    +

Returns void

  • Removes an indexed document.

    Parameters

    • ref: string

      Reference identifier of the document to remove.

      -

    Returns void

  • Scans the document index and returns a list of documents summaries (with +

Returns void

  • Scans the document index and returns a list of documents summaries (with only the properties declared in the summary option) that possibly match one or more terms in the query.

    Each search term is run through the provided stemmer function to ensure @@ -74,4 +74,4 @@ language.

Returns Pick<Document, SummaryField>[]

Ordered list of document summaries, sorted by probable search term frequency.

-
+
diff --git a/classes/_pacote_error.BaseError.html b/classes/_pacote_error.BaseError.html index b4493b4f3..451014da1 100644 --- a/classes/_pacote_error.BaseError.html +++ b/classes/_pacote_error.BaseError.html @@ -1,4 +1,4 @@ -BaseError | Pacote

Hierarchy (view full)

Constructors

constructor +BaseError | Pacote

Hierarchy (view full)

Constructors

Properties

cause? message name @@ -8,8 +8,8 @@

Methods

Constructors

Properties

cause?: unknown
message: string
name: string
stack?: string
prepareStackTrace?: ((err: Error, stackTraces: CallSite[]) => any)

Optional override for formatting stack traces

+

Constructors

Properties

cause?: unknown
message: string
name: string
stack?: string
prepareStackTrace?: ((err: Error, stackTraces: CallSite[]) => any)

Optional override for formatting stack traces

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    -

    Parameters

    • targetObject: object
    • OptionalconstructorOpt: Function

    Returns void

+

Parameters

Returns void

diff --git a/classes/_pacote_error.ComplexError.html b/classes/_pacote_error.ComplexError.html index c2748a14f..9be83a4cd 100644 --- a/classes/_pacote_error.ComplexError.html +++ b/classes/_pacote_error.ComplexError.html @@ -1,4 +1,4 @@ -ComplexError | Pacote

Hierarchy (view full)

Constructors

constructor +ComplexError | Pacote

Hierarchy (view full)

Constructors

Properties

Constructors

Properties

cause?: unknown
causes: readonly (BaseError | Error)[]
message: string
name: string
stack?: string
prepareStackTrace?: ((err: Error, stackTraces: CallSite[]) => any)

Optional override for formatting stack traces

+

Constructors

Properties

cause?: unknown
causes: readonly (BaseError | Error)[]
message: string
name: string
stack?: string
prepareStackTrace?: ((err: Error, stackTraces: CallSite[]) => any)

Optional override for formatting stack traces

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    -

    Parameters

    • targetObject: object
    • OptionalconstructorOpt: Function

    Returns void

+

Parameters

Returns void

diff --git a/classes/_pacote_lru_cache.LRUCache.html b/classes/_pacote_lru_cache.LRUCache.html index e41139869..fc3a30adc 100644 --- a/classes/_pacote_lru_cache.LRUCache.html +++ b/classes/_pacote_lru_cache.LRUCache.html @@ -2,7 +2,7 @@
import { LRUCache } from '@pacote/lru-cache'

const cache = new LRUCache(1000)

cache.set('key', 'value')
cache.get('key') // => 'value'
-

Type Parameters

Constructors

Type Parameters

Constructors

Accessors

Methods

clear delete @@ -12,19 +12,19 @@

Constructors

  • Creates a new instance of the LRU cache.

    Type Parameters

    • K
    • V

    Parameters

    • capacity: number

      Cache capacity. Any items added over this limit will evict the least-recently used item in cache.

      -

    Returns LRUCache<K, V>

Accessors

  • get size(): number
  • Cache size.

    -

    Returns number

Methods

  • Clears the cache.

    -

    Returns void

  • Removes the cached value under the specified key.

    +

Returns LRUCache<K, V>

Accessors

  • get size(): number
  • Cache size.

    +

    Returns number

Methods

  • Clears the cache.

    +

    Returns void

  • Removes the cached value under the specified key.

    Note: deleting a cached value will not contract the size of the cache.

    Parameters

    • key: K

      Item cache key to remove.

      -

    Returns void

  • Retrieves the cached item at the provided key, if present.

    +

Returns void

  • Retrieves the cached item at the provided key, if present.

    Parameters

    • key: K

      Cache key to look up.

    Returns undefined | V

    Value stored in the cache, or undefined if none found.

    -
  • Checks the membership of a cached item at the provided key. This will not +

  • Checks the membership of a cached item at the provided key. This will not advance the checked entry to the top of the updated stack.

    Parameters

    • key: K

      Cache key to look up.

    Returns boolean

    Whether an item exists with the provided key.

    -
  • Updates the cache by setting a cache key to the provided value.

    +
  • Updates the cache by setting a cache key to the provided value.

    Parameters

    • key: K

      Item cache key.

    • value: V

      Item value.

      -

    Returns void

+

Returns void

diff --git a/functions/_pacote_array.associate.html b/functions/_pacote_array.associate.html index 4a6e2116d..d90eec6c9 100644 --- a/functions/_pacote_array.associate.html +++ b/functions/_pacote_array.associate.html @@ -7,4 +7,4 @@
import { associate } from '@pacote/array'

associate((s) => [s, s.length], ['abc', 'd']) // => { 'abc': 3, 'd': 1 }
-
+
diff --git a/functions/_pacote_array.chunked.html b/functions/_pacote_array.chunked.html index 843483245..b829c0a9d 100644 --- a/functions/_pacote_array.chunked.html +++ b/functions/_pacote_array.chunked.html @@ -7,4 +7,4 @@
import { chunked } from '@pacote/array'

const array = [1, 2, 3, 4]

chunked(2, array) // => [[1, 2], [3, 4]]
chunked(3, array) // => [[1, 2, 3], [4]]
-
+
diff --git a/functions/_pacote_array.difference.html b/functions/_pacote_array.difference.html index 430284fed..40452e121 100644 --- a/functions/_pacote_array.difference.html +++ b/functions/_pacote_array.difference.html @@ -8,4 +8,4 @@
import { chunked } from '@pacote/array'

difference(['a', 'b'], ['b', 'c']) // => [['a'], ['c']]
-
+
diff --git a/functions/_pacote_array.intersect.html b/functions/_pacote_array.intersect.html index f1663e22e..43b3bf0ad 100644 --- a/functions/_pacote_array.intersect.html +++ b/functions/_pacote_array.intersect.html @@ -6,4 +6,4 @@
import { intersect } from '@pacote/array'

intersect(['a', 'b', 'c'], ['b', 'c', 'd']) // => ['b', 'c']
-
+
diff --git a/functions/_pacote_array.range.html b/functions/_pacote_array.range.html index 294bb8b4c..b4d95eb84 100644 --- a/functions/_pacote_array.range.html +++ b/functions/_pacote_array.range.html @@ -6,4 +6,4 @@

Returns number[]

import { range } from '@pacote/array'

range(1, 4) // => [1, 2, 3]
-
+
diff --git a/functions/_pacote_array.sample.html b/functions/_pacote_array.sample.html index 0f322c2fd..a0d52f83a 100644 --- a/functions/_pacote_array.sample.html +++ b/functions/_pacote_array.sample.html @@ -6,4 +6,4 @@
import { sample } from '@pacote/array'

sample([1, 2, 3]) // => 2
sample([1, 2, 3]) // => 1
-
+
diff --git a/functions/_pacote_array.sampleN.html b/functions/_pacote_array.sampleN.html index 5e185656e..439886036 100644 --- a/functions/_pacote_array.sampleN.html +++ b/functions/_pacote_array.sampleN.html @@ -5,4 +5,4 @@
import { sampleN } from '@pacote/array'

sampleN([1, 2, 3], 2) // => [2, 1]
sampleN([1, 2, 3], 2) // => [3, 3]
-
+
diff --git a/functions/_pacote_array.times.html b/functions/_pacote_array.times.html index 5bf039bc2..2ae5c5dbf 100644 --- a/functions/_pacote_array.times.html +++ b/functions/_pacote_array.times.html @@ -7,4 +7,4 @@
import { times } from '@pacote/array'

times(3, (index) => index) // => [0, 1, 2]
-
+
diff --git a/functions/_pacote_array.unique.html b/functions/_pacote_array.unique.html index efd98760d..88405840e 100644 --- a/functions/_pacote_array.unique.html +++ b/functions/_pacote_array.unique.html @@ -1 +1 @@ -unique | Pacote
  • Type Parameters

    • T

    Parameters

    • array: T[]

    Returns T[]

+unique | Pacote
  • Type Parameters

    • T

    Parameters

    • array: T[]

    Returns T[]

diff --git a/functions/_pacote_array.windowed.html b/functions/_pacote_array.windowed.html index 1c8fefadb..005138b02 100644 --- a/functions/_pacote_array.windowed.html +++ b/functions/_pacote_array.windowed.html @@ -13,4 +13,4 @@
import { windowed } from '@pacote/array'

const array = [1, 2, 3, 4]

windowed(2, array) // => [[1, 2], [2, 3], [3, 4]]
windowed(3, array) // => [[1, 2, 3], [2, 3, 4]]
windowed(2, 2, array) // => [[1, 2], [3, 4]]
-
+
diff --git a/functions/_pacote_bloom_filter.optimal.html b/functions/_pacote_bloom_filter.optimal.html index 290871a4d..9e2911374 100644 --- a/functions/_pacote_bloom_filter.optimal.html +++ b/functions/_pacote_bloom_filter.optimal.html @@ -1 +1 @@ -optimal | Pacote
  • Parameters

    • items: number
    • errorRate: number

    Returns Options

+optimal | Pacote
  • Parameters

    • items: number
    • errorRate: number

    Returns Options

diff --git a/functions/_pacote_computus.gregorian.html b/functions/_pacote_computus.gregorian.html index 964d63652..87c045b2a 100644 --- a/functions/_pacote_computus.gregorian.html +++ b/functions/_pacote_computus.gregorian.html @@ -7,4 +7,4 @@
import { gregorian } from '@pacote/computus'

gregorian(2020) // .toLocaleDateString() => '4/12/2020'
-
+
diff --git a/functions/_pacote_computus.julian.html b/functions/_pacote_computus.julian.html index e1ba7c12a..031a73c4b 100644 --- a/functions/_pacote_computus.julian.html +++ b/functions/_pacote_computus.julian.html @@ -9,4 +9,4 @@
import { julian } from '@pacote/computus'

julian(2020) // .toLocaleDateString() => '4/19/2020'
-
+
diff --git a/functions/_pacote_disposable.asyncDisposable.html b/functions/_pacote_disposable.asyncDisposable.html index 2acfe935f..19577b0d7 100644 --- a/functions/_pacote_disposable.asyncDisposable.html +++ b/functions/_pacote_disposable.asyncDisposable.html @@ -6,4 +6,4 @@
import { open } from "node:fs/promises"
import { asyncDisposable } from "@pacote/disposable"

const getFileHandle = async (path: string) => {
const fileHandle = await open(path)
return asyncDisposable(fileHandle, fileHandle.close)
};

{
await using fileHandle = await getFileHandle("file.txt");
await fileHandle.read(buffer)
// fileHandle is automatically closed
}
-
+
diff --git a/functions/_pacote_disposable.disposable.html b/functions/_pacote_disposable.disposable.html index 0ffd4c5e8..7db06b1ed 100644 --- a/functions/_pacote_disposable.disposable.html +++ b/functions/_pacote_disposable.disposable.html @@ -6,4 +6,4 @@
import { disposable } from "@pacote/disposable"
import fs from "node:fs"

const getFileHandle = (path: string) => {
const descriptor = fs.openSync(path)
return disposable(
{
read: (buffer) => fs.readSync(descriptor, buffer),
},
() => fs.closeSync(descriptor),
};
};

{
using fileHandle = getFileHandle("file.txt");
fileHandle.read(buffer)
// descriptor is automatically closed
}
-
+
diff --git a/functions/_pacote_emitter.createEmitter.html b/functions/_pacote_emitter.createEmitter.html index de63eae37..b1baa2d01 100644 --- a/functions/_pacote_emitter.createEmitter.html +++ b/functions/_pacote_emitter.createEmitter.html @@ -1 +1 @@ -createEmitter | Pacote
  • Type Parameters

    • E extends Events

    Returns Emitter<E>

+createEmitter | Pacote
  • Type Parameters

    • E extends Events

    Returns Emitter<E>

diff --git a/functions/_pacote_ffetch.createFetch.html b/functions/_pacote_ffetch.createFetch.html index 7f2da444e..bbe373685 100644 --- a/functions/_pacote_ffetch.createFetch.html +++ b/functions/_pacote_ffetch.createFetch.html @@ -1 +1 @@ -createFetch | Pacote
  • Type Parameters

    • E
    • T

    Parameters

    • Optionaloptions: Partial<FetchOptions<E, T>>

    Returns Fetch<E, T>

+createFetch | Pacote
  • Type Parameters

    • E
    • T

    Parameters

    • Optionaloptions: Partial<FetchOptions<E, T>>

    Returns Fetch<E, T>

diff --git a/functions/_pacote_ffetch.ffetch.html b/functions/_pacote_ffetch.ffetch.html index 84d413859..028977c03 100644 --- a/functions/_pacote_ffetch.ffetch.html +++ b/functions/_pacote_ffetch.ffetch.html @@ -1 +1 @@ -ffetch | Pacote
  • Parameters

    • input: string | Request
    • Optionalinit: RequestInit

    Returns TaskEither<FetchError<unknown>, unknown>

+ffetch | Pacote
  • Parameters

    • input: string | Request
    • Optionalinit: RequestInit

    Returns TaskEither<FetchError<unknown>, unknown>

diff --git a/functions/_pacote_flux_actions.createAction.html b/functions/_pacote_flux_actions.createAction.html index eb2ced21a..0603d6460 100644 --- a/functions/_pacote_flux_actions.createAction.html +++ b/functions/_pacote_flux_actions.createAction.html @@ -1 +1 @@ -createAction | Pacote
  • Type Parameters

    • P = void
    • M = void

    Parameters

    • type: string

    Returns ActionCreator<P, M>

+createAction | Pacote
  • Type Parameters

    • P = void
    • M = void

    Parameters

    • type: string

    Returns ActionCreator<P, M>

diff --git a/functions/_pacote_flux_actions.isType.html b/functions/_pacote_flux_actions.isType.html index 83bc0bf10..189d4c77d 100644 --- a/functions/_pacote_flux_actions.isType.html +++ b/functions/_pacote_flux_actions.isType.html @@ -1 +1 @@ -isType | Pacote
+isType | Pacote
diff --git a/functions/_pacote_flux_actions.reducerFromState.html b/functions/_pacote_flux_actions.reducerFromState.html index 9aa859930..9ce594d3a 100644 --- a/functions/_pacote_flux_actions.reducerFromState.html +++ b/functions/_pacote_flux_actions.reducerFromState.html @@ -1 +1 @@ -reducerFromState | Pacote
  • Type Parameters

    • S

    Parameters

    • initialState: S

    Returns EnhancedReducer<S>

+reducerFromState | Pacote
  • Type Parameters

    • S

    Parameters

    • initialState: S

    Returns EnhancedReducer<S>

diff --git a/functions/_pacote_get_style.getStyle.html b/functions/_pacote_get_style.getStyle.html index eaf0ef2c8..4187685fd 100644 --- a/functions/_pacote_get_style.getStyle.html +++ b/functions/_pacote_get_style.getStyle.html @@ -1 +1 @@ -getStyle | Pacote
  • Parameters

    • element: HTMLElement
    • property: keyof CSSStyleDeclaration

    Returns string

+getStyle | Pacote
  • Parameters

    • element: HTMLElement
    • property: keyof CSSStyleDeclaration

    Returns string

diff --git a/functions/_pacote_iff.iff.html b/functions/_pacote_iff.iff.html index a16901fc9..1c0418ebc 100644 --- a/functions/_pacote_iff.iff.html +++ b/functions/_pacote_iff.iff.html @@ -1 +1 @@ -iff | Pacote
  • Type Parameters

    • T

    Parameters

    • predicate: boolean
    • onConsequent: (() => T)
        • (): T
        • Returns T

    Returns Option<T>

  • Type Parameters

    • T

    Parameters

    • predicate: boolean
    • onConsequent: (() => T)
        • (): T
        • Returns T

    • onAlternative: (() => T)
        • (): T
        • Returns T

    Returns T

+iff | Pacote
  • Type Parameters

    • T

    Parameters

    • predicate: boolean
    • onConsequent: (() => T)
        • (): T
        • Returns T

    Returns Option<T>

  • Type Parameters

    • T

    Parameters

    • predicate: boolean
    • onConsequent: (() => T)
        • (): T
        • Returns T

    • onAlternative: (() => T)
        • (): T
        • Returns T

    Returns T

diff --git a/functions/_pacote_interpolate.interpolate.html b/functions/_pacote_interpolate.interpolate.html index e2a56ddfd..412732199 100644 --- a/functions/_pacote_interpolate.interpolate.html +++ b/functions/_pacote_interpolate.interpolate.html @@ -1 +1 @@ -interpolate | Pacote
  • Parameters

    • template: string
    • pattern: string | RegExp = ...

    Returns ((data?: ReplaceMap<
        | undefined
        | null
        | string
        | number>) => string)

      • (data?): string
      • Parameters

        • data: ReplaceMap<
              | undefined
              | null
              | string
              | number> = {}

        Returns string

+interpolate | Pacote
  • Parameters

    • template: string
    • pattern: string | RegExp = ...

    Returns ((data?: ReplaceMap<
        | undefined
        | null
        | string
        | number>) => string)

      • (data?): string
      • Parameters

        • data: ReplaceMap<
              | undefined
              | null
              | string
              | number> = {}

        Returns string

diff --git a/functions/_pacote_is_plain_object.isPlainObject.html b/functions/_pacote_is_plain_object.isPlainObject.html index 0319857f0..633b887e8 100644 --- a/functions/_pacote_is_plain_object.isPlainObject.html +++ b/functions/_pacote_is_plain_object.isPlainObject.html @@ -1 +1 @@ -isPlainObject | Pacote
  • Parameters

    • o: unknown

    Returns o is Record<string, unknown>

+isPlainObject | Pacote
  • Parameters

    • o: unknown

    Returns o is Record<string, unknown>

diff --git a/functions/_pacote_linked_list.append.html b/functions/_pacote_linked_list.append.html index eea819d7d..5fb77055b 100644 --- a/functions/_pacote_linked_list.append.html +++ b/functions/_pacote_linked_list.append.html @@ -2,4 +2,4 @@

Type Parameters

Parameters

Returns LinkedList<T>

New linked list with the element appended to the end.

-
+
diff --git a/functions/_pacote_linked_list.at.html b/functions/_pacote_linked_list.at.html index 73bac3fea..c077b7294 100644 --- a/functions/_pacote_linked_list.at.html +++ b/functions/_pacote_linked_list.at.html @@ -4,4 +4,4 @@

Type Parameters

Parameters

Returns Option<T>

Option with the element at the provided index or None.

-
+
diff --git a/functions/_pacote_linked_list.concat.html b/functions/_pacote_linked_list.concat.html index 1a433eec7..59aea5678 100644 --- a/functions/_pacote_linked_list.concat.html +++ b/functions/_pacote_linked_list.concat.html @@ -2,4 +2,4 @@

Type Parameters

Parameters

Returns LinkedList<T>

A new linked list with the two provided lists concatenated.

-
+
diff --git a/functions/_pacote_linked_list.drop.html b/functions/_pacote_linked_list.drop.html index d543d82b5..3daeb0c5e 100644 --- a/functions/_pacote_linked_list.drop.html +++ b/functions/_pacote_linked_list.drop.html @@ -2,4 +2,4 @@

Type Parameters

Parameters

Returns LinkedList<T>

A new linked list with the first offset list items removed.

-
+
diff --git a/functions/_pacote_linked_list.entries.html b/functions/_pacote_linked_list.entries.html index e17b13dad..df04ab5e5 100644 --- a/functions/_pacote_linked_list.entries.html +++ b/functions/_pacote_linked_list.entries.html @@ -2,4 +2,4 @@ that contains the key/value pairs for each index in the list.

Type Parameters

Parameters

Returns IterableIterator<[number, T]>

Entry iterator.

-
+
diff --git a/functions/_pacote_linked_list.every.html b/functions/_pacote_linked_list.every.html index 6e9de1cd5..c2424f14d 100644 --- a/functions/_pacote_linked_list.every.html +++ b/functions/_pacote_linked_list.every.html @@ -3,4 +3,4 @@

Type Parameters

Parameters

Returns boolean

Whether all the elements satisfy the predicate function.

-
+
diff --git a/functions/_pacote_linked_list.filter.html b/functions/_pacote_linked_list.filter.html index f63f747df..e7a24c378 100644 --- a/functions/_pacote_linked_list.filter.html +++ b/functions/_pacote_linked_list.filter.html @@ -5,4 +5,4 @@ returns true, the item is included in the filtered list.

  • list: LinkedList<T>

    Linked list.

  • Returns LinkedList<T>

    A new list containing only the filtered items.

    -
    +
    diff --git a/functions/_pacote_linked_list.find.html b/functions/_pacote_linked_list.find.html index 1881fe5d2..24df95106 100644 --- a/functions/_pacote_linked_list.find.html +++ b/functions/_pacote_linked_list.find.html @@ -5,4 +5,4 @@
  • list: LinkedList<T>

    Linked list.

  • Returns Option<T>

    Option with the first element in the list that satisfies the predicate function or None.

    -
    +
    diff --git a/functions/_pacote_linked_list.findIndex.html b/functions/_pacote_linked_list.findIndex.html index e173e5906..e0f220d40 100644 --- a/functions/_pacote_linked_list.findIndex.html +++ b/functions/_pacote_linked_list.findIndex.html @@ -4,4 +4,4 @@

    Type Parameters

    Parameters

    Returns Option<number>

    First index of the list element satisfied by the predicate.

    -
    +
    diff --git a/functions/_pacote_linked_list.flatMap.html b/functions/_pacote_linked_list.flatMap.html index 634758f9d..81abfee8c 100644 --- a/functions/_pacote_linked_list.flatMap.html +++ b/functions/_pacote_linked_list.flatMap.html @@ -4,4 +4,4 @@

    Type Parameters

    Parameters

    Returns LinkedList<R>

    A new list containing the flatmapped items.

    -
    +
    diff --git a/functions/_pacote_linked_list.get.html b/functions/_pacote_linked_list.get.html index c2e6461d8..ac5652455 100644 --- a/functions/_pacote_linked_list.get.html +++ b/functions/_pacote_linked_list.get.html @@ -3,4 +3,4 @@

    Type Parameters

    Parameters

    Returns Option<T>

    Option with the element at the provided index or None.

    -
    +
    diff --git a/functions/_pacote_linked_list.head.html b/functions/_pacote_linked_list.head.html index 52eba4a37..6245573e1 100644 --- a/functions/_pacote_linked_list.head.html +++ b/functions/_pacote_linked_list.head.html @@ -2,4 +2,4 @@

    Type Parameters

    Parameters

    Returns Option<T>

    Option with the first element of the linked list, or None if the linked list is empty.

    -
    +
    diff --git a/functions/_pacote_linked_list.includes.html b/functions/_pacote_linked_list.includes.html index cf848d22c..77b6a2447 100644 --- a/functions/_pacote_linked_list.includes.html +++ b/functions/_pacote_linked_list.includes.html @@ -3,4 +3,4 @@

    Type Parameters

    Parameters

    Returns boolean

    Whether the element exists in the list.

    -
    +
    diff --git a/functions/_pacote_linked_list.indexOf.html b/functions/_pacote_linked_list.indexOf.html index c616d2b89..48f1dbf1e 100644 --- a/functions/_pacote_linked_list.indexOf.html +++ b/functions/_pacote_linked_list.indexOf.html @@ -3,4 +3,4 @@

    Type Parameters

    Parameters

    Returns Option<number>

    First index of the list element matching the provided value.

    -
    +
    diff --git a/functions/_pacote_linked_list.isEmpty.html b/functions/_pacote_linked_list.isEmpty.html index db08641e6..a044ef033 100644 --- a/functions/_pacote_linked_list.isEmpty.html +++ b/functions/_pacote_linked_list.isEmpty.html @@ -1,4 +1,4 @@ isEmpty | Pacote
    • Check whether a list is empty.

      Parameters

      • list: unknown

        Linked list.

      Returns list is undefined

      true if the provided linked list is empty, false otherwise.

      -
    +
    diff --git a/functions/_pacote_linked_list.item.html b/functions/_pacote_linked_list.item.html index d0abda91d..d3fc35216 100644 --- a/functions/_pacote_linked_list.item.html +++ b/functions/_pacote_linked_list.item.html @@ -1,2 +1,2 @@ item | Pacote
    • Type Parameters

      • T

      Parameters

      • index: number
      • list: LinkedList<T>

      Returns Option<T>

      Use at().

      -
    +
    diff --git a/functions/_pacote_linked_list.keys.html b/functions/_pacote_linked_list.keys.html index 49e785513..7f4f9ec24 100644 --- a/functions/_pacote_linked_list.keys.html +++ b/functions/_pacote_linked_list.keys.html @@ -2,4 +2,4 @@ that contains the keys for each index in the list.

    Type Parameters

    Parameters

    Returns IterableIterator<number>

    Key iterator.

    -
    +
    diff --git a/functions/_pacote_linked_list.lastIndexOf.html b/functions/_pacote_linked_list.lastIndexOf.html index a4591796f..3ec0dec1a 100644 --- a/functions/_pacote_linked_list.lastIndexOf.html +++ b/functions/_pacote_linked_list.lastIndexOf.html @@ -4,4 +4,4 @@

    Type Parameters

    Parameters

    Returns Option<number>

    Last index of the list element matching the provided value.

    -
    +
    diff --git a/functions/_pacote_linked_list.length.html b/functions/_pacote_linked_list.length.html index 417720444..3f04eca7f 100644 --- a/functions/_pacote_linked_list.length.html +++ b/functions/_pacote_linked_list.length.html @@ -1,4 +1,4 @@ length | Pacote
    • Count the number of elements in a list.

      Type Parameters

      • T

      Parameters

      • list: LinkedList<T>

        Linked list.

      Returns number

      Number of list elements.

      -
    +
    diff --git a/functions/_pacote_linked_list.listOf.html b/functions/_pacote_linked_list.listOf.html index 7936c652a..cae505c30 100644 --- a/functions/_pacote_linked_list.listOf.html +++ b/functions/_pacote_linked_list.listOf.html @@ -1,4 +1,4 @@ listOf | Pacote
    • Create a new singly linked list with the arguments passed as items.

      Type Parameters

      • T

      Parameters

      • Rest...items: T[]

        List elements.

      Returns LinkedList<T>

      Linked list with the provided elements.

      -
    +
    diff --git a/functions/_pacote_linked_list.map.html b/functions/_pacote_linked_list.map.html index 85147608c..a0ceda6de 100644 --- a/functions/_pacote_linked_list.map.html +++ b/functions/_pacote_linked_list.map.html @@ -4,4 +4,4 @@

    Type Parameters

    Parameters

    Returns LinkedList<R>

    A new list containing the mapped items.

    -
    +
    diff --git a/functions/_pacote_linked_list.prepend.html b/functions/_pacote_linked_list.prepend.html index 0d3d7e65c..925a1b083 100644 --- a/functions/_pacote_linked_list.prepend.html +++ b/functions/_pacote_linked_list.prepend.html @@ -2,4 +2,4 @@

    Type Parameters

    Parameters

    Returns LinkedList<T>

    A new list with the element added at the head.

    -
    +
    diff --git a/functions/_pacote_linked_list.reduce.html b/functions/_pacote_linked_list.reduce.html index d6d200635..1a33a1df1 100644 --- a/functions/_pacote_linked_list.reduce.html +++ b/functions/_pacote_linked_list.reduce.html @@ -8,4 +8,4 @@
  • initial: R

    Initial value.

  • list: LinkedList<T>

    Linked list.

  • Returns R

    Result of the last execution of the callback.

    -
    +
    diff --git a/functions/_pacote_linked_list.reduceRight.html b/functions/_pacote_linked_list.reduceRight.html index 6bd16eb72..ef352a0f5 100644 --- a/functions/_pacote_linked_list.reduceRight.html +++ b/functions/_pacote_linked_list.reduceRight.html @@ -3,4 +3,4 @@
  • initial: R

    Initial value.

  • list: LinkedList<T>

    Linked list.

  • Returns R

    Result of the last execution of the callback.

    -
    +
    diff --git a/functions/_pacote_linked_list.remove.html b/functions/_pacote_linked_list.remove.html index b95f82ad3..43057c616 100644 --- a/functions/_pacote_linked_list.remove.html +++ b/functions/_pacote_linked_list.remove.html @@ -2,4 +2,4 @@

    Type Parameters

    Parameters

    Returns LinkedList<T>

    A new linked list with the item at index index removed.

    -
    +
    diff --git a/functions/_pacote_linked_list.rest.html b/functions/_pacote_linked_list.rest.html index e1d903534..8ae8be94a 100644 --- a/functions/_pacote_linked_list.rest.html +++ b/functions/_pacote_linked_list.rest.html @@ -2,4 +2,4 @@ If the linked list is empty or has a single element, it returns an empty list.

    Type Parameters

    Parameters

    Returns LinkedList<T>

    The rest of the list.

    -
    +
    diff --git a/functions/_pacote_linked_list.reverse.html b/functions/_pacote_linked_list.reverse.html index dec033f78..efe2819ab 100644 --- a/functions/_pacote_linked_list.reverse.html +++ b/functions/_pacote_linked_list.reverse.html @@ -1,4 +1,4 @@ reverse | Pacote
    • Invert the order of the elements in the provided linked list.

      Type Parameters

      • T

      Parameters

      • list: LinkedList<T>

        Linked list.

      Returns LinkedList<T>

      A new reversed list.

      -
    +
    diff --git a/functions/_pacote_linked_list.slice.html b/functions/_pacote_linked_list.slice.html index 5156c6bc0..6c40c5d8e 100644 --- a/functions/_pacote_linked_list.slice.html +++ b/functions/_pacote_linked_list.slice.html @@ -4,11 +4,11 @@
  • list: LinkedList<T>

    Linked list.

  • Returns LinkedList<T>

    A new linked list with a subset of elements between start and the end of the list.

    -
  • Creates a subset of elements from a start index (inclusive) to an end +

  • Creates a subset of elements from a start index (inclusive) to an end index (non-inclusive) of the list.

    Type Parameters

    Parameters

    Returns LinkedList<T>

    A new linked list with a subset of elements between start and end of the list.

    -
  • +
    diff --git a/functions/_pacote_linked_list.some.html b/functions/_pacote_linked_list.some.html index 564b38924..80dff52c7 100644 --- a/functions/_pacote_linked_list.some.html +++ b/functions/_pacote_linked_list.some.html @@ -3,4 +3,4 @@

    Type Parameters

    Parameters

    Returns boolean

    Whether some of the elements satisfy the predicate function.

    -
    +
    diff --git a/functions/_pacote_linked_list.sort.html b/functions/_pacote_linked_list.sort.html index 4befa45e3..f81abe17f 100644 --- a/functions/_pacote_linked_list.sort.html +++ b/functions/_pacote_linked_list.sort.html @@ -12,7 +12,7 @@
    import { listOf, sort } from '@pacote/linked-list'

    sort(listOf(3, 2, 1)) // => [1, [2, [3, undefined]]]
    -
  • Returns a new list with the elements in the provided list in order. +

  • Returns a new list with the elements in the provided list in order. The sort order is determined by a custom comparator function.

    The function implements the merge sort algorithm, with O(n log n) time complexity and O(n) space complexity.

    @@ -23,4 +23,4 @@

    Type Parameters

    Parameters

    Returns LinkedList<T>

    A new sorted list.

    -
  • +
    diff --git a/functions/_pacote_linked_list.tail.html b/functions/_pacote_linked_list.tail.html index 54fac6d3b..0bf6dd8a8 100644 --- a/functions/_pacote_linked_list.tail.html +++ b/functions/_pacote_linked_list.tail.html @@ -2,4 +2,4 @@

    Type Parameters

    Parameters

    Returns Option<T>

    Option with the final element in the linked list. If the linked list is empty, it returns None.

    -
    +
    diff --git a/functions/_pacote_linked_list.take.html b/functions/_pacote_linked_list.take.html index fa52cb194..1f27fe587 100644 --- a/functions/_pacote_linked_list.take.html +++ b/functions/_pacote_linked_list.take.html @@ -2,4 +2,4 @@

    Type Parameters

    Parameters

    Returns LinkedList<T>

    A new linked list with the first offset items of the list.

    -
    +
    diff --git a/functions/_pacote_linked_list.toArray.html b/functions/_pacote_linked_list.toArray.html index 66fa7e51c..7b5b87c29 100644 --- a/functions/_pacote_linked_list.toArray.html +++ b/functions/_pacote_linked_list.toArray.html @@ -1,4 +1,4 @@ toArray | Pacote
    • Turn a linked list into its equivalent array representation.

      Type Parameters

      • T

      Parameters

      • list: LinkedList<T>

        Linked list.

      Returns T[]

      Array version of the linked list.

      -
    +
    diff --git a/functions/_pacote_linked_list.unique.html b/functions/_pacote_linked_list.unique.html index 7eb243bc9..f3957b333 100644 --- a/functions/_pacote_linked_list.unique.html +++ b/functions/_pacote_linked_list.unique.html @@ -1,4 +1,4 @@ unique | Pacote
    • Get the unique items of a list.

      Type Parameters

      • T

      Parameters

      • list: LinkedList<T>

        Linked list.

      Returns LinkedList<T>

      A new linked list with a subset of elements that are unique.

      -
    +
    diff --git a/functions/_pacote_linked_list.values.html b/functions/_pacote_linked_list.values.html index 9b87f2ecc..5eeb9ec03 100644 --- a/functions/_pacote_linked_list.values.html +++ b/functions/_pacote_linked_list.values.html @@ -2,4 +2,4 @@ that contains the values for each index in the list.

    Type Parameters

    Parameters

    Returns IterableIterator<T>

    Value iterator.

    -
    +
    diff --git a/functions/_pacote_memoize.memoize.html b/functions/_pacote_memoize.memoize.html index 23818e2ee..04189edfc 100644 --- a/functions/_pacote_memoize.memoize.html +++ b/functions/_pacote_memoize.memoize.html @@ -7,4 +7,4 @@
    import { memoize } from '@pacote/memoize'

    const randomFunction = (prefix: string) => `${prefix}${Math.random()}`

    const memoizedFunction = memoize((prefix) => `key_${prefix}`, randomFunction)

    memoizedFunction('foo') // 'foo' followed by randomly-generated number.
    memoizedFunction('foo') // Same result as previous call with 'foo'.

    memoizedFunction('bar') // 'bar' followed by randomly-generated number.
    memoizedFunction('bar') // Same result as previous call with 'bar'.
    -
    +
    diff --git a/functions/_pacote_non_empty_array.concat.html b/functions/_pacote_non_empty_array.concat.html index ad02c17a3..d959ab5ec 100644 --- a/functions/_pacote_non_empty_array.concat.html +++ b/functions/_pacote_non_empty_array.concat.html @@ -6,4 +6,4 @@
    import { concat } from '@pacote/non-empty-array'

    concat([1, 2], [3, 4]) // => [1, 2, 3, 4]
    concat([1], []) // => [1]
    concat([], []) // => TypeScript compilation error
    -
  • Type Parameters

    Parameters

    Returns NonEmptyArray<T>

  • +
  • Type Parameters

    Parameters

    Returns NonEmptyArray<T>

  • diff --git a/functions/_pacote_non_empty_array.fromArray.html b/functions/_pacote_non_empty_array.fromArray.html index 8f6809041..92b1fa22f 100644 --- a/functions/_pacote_non_empty_array.fromArray.html +++ b/functions/_pacote_non_empty_array.fromArray.html @@ -5,4 +5,4 @@
    import { fromArray } from '@pacote/non-empty-array'

    fromArray([1, 2, 3]) // => Some([1, 2, 3])
    fromArray([]) // => None
    -
    +
    diff --git a/functions/_pacote_non_empty_array.fromElements.html b/functions/_pacote_non_empty_array.fromElements.html index 2081200c6..4034cc3b7 100644 --- a/functions/_pacote_non_empty_array.fromElements.html +++ b/functions/_pacote_non_empty_array.fromElements.html @@ -5,4 +5,4 @@
    import { fromElements } from '@pacote/non-empty-array'

    fromElements(1, 2, 3) // => [1, 2, 3]
    fromElements() // => TypeScript compilation error
    -
    +
    diff --git a/functions/_pacote_non_empty_array.isNonEmptyArray.html b/functions/_pacote_non_empty_array.isNonEmptyArray.html index 86f40731f..a37a9c253 100644 --- a/functions/_pacote_non_empty_array.isNonEmptyArray.html +++ b/functions/_pacote_non_empty_array.isNonEmptyArray.html @@ -1,4 +1,4 @@ isNonEmptyArray | Pacote
    • Checks if the provided value is a non-empty array.

      Type Parameters

      • T

      Parameters

      • value: unknown

        Value to evaluate.

      Returns value is NonEmptyArray<T>

      Whether the value is a non-empty array.

      -
    +
    diff --git a/functions/_pacote_option.Some-1.html b/functions/_pacote_option.Some-1.html index eb45228a4..b55d89e0a 100644 --- a/functions/_pacote_option.Some-1.html +++ b/functions/_pacote_option.Some-1.html @@ -1,4 +1,4 @@ Some | Pacote
    • Represents a value of type T.

      Type Parameters

      • T

      Parameters

      • value: T

        Value to contain.

      Returns Some<T>

      An instance of Some<T>

      -
    +
    diff --git a/functions/_pacote_option.and.html b/functions/_pacote_option.and.html index 18d92b2db..35f76be87 100644 --- a/functions/_pacote_option.and.html +++ b/functions/_pacote_option.and.html @@ -3,4 +3,4 @@
  • option: Option<T>

    Option to evaluate.

  • Returns Option<T>

    None if the provided alternative is None, otherwise the alternative is returned.

    -
    +
    diff --git a/functions/_pacote_option.contains.html b/functions/_pacote_option.contains.html index 815586517..13653d848 100644 --- a/functions/_pacote_option.contains.html +++ b/functions/_pacote_option.contains.html @@ -4,4 +4,4 @@

    Returns boolean

    Returns true if the Some value is the same as match. Otherwise, it returns false.

    -
    +
    diff --git a/functions/_pacote_option.filter.html b/functions/_pacote_option.filter.html index 5b01f3c16..e1c37cc53 100644 --- a/functions/_pacote_option.filter.html +++ b/functions/_pacote_option.filter.html @@ -4,4 +4,4 @@
  • option: Option<T>

    Option to evaluate.

  • Returns Option<T>

    Some<T> if the predicate returns true, or None if the predicate returns false.

    -
    +
    diff --git a/functions/_pacote_option.flatMap.html b/functions/_pacote_option.flatMap.html index 93b642d66..16e993e74 100644 --- a/functions/_pacote_option.flatMap.html +++ b/functions/_pacote_option.flatMap.html @@ -3,4 +3,4 @@

    Type Parameters

    Parameters

    Returns Option<U>

    Flat mapped Option.

    -
    +
    diff --git a/functions/_pacote_option.flatten.html b/functions/_pacote_option.flatten.html index a5b34dcbb..8a40f0df9 100644 --- a/functions/_pacote_option.flatten.html +++ b/functions/_pacote_option.flatten.html @@ -1,4 +1,4 @@ flatten | Pacote
    • Converts Option<Option<T>> to Option<T>.

      Type Parameters

      • T

      Parameters

      Returns Option<T>

      Flattened result.

      -
    +
    diff --git a/functions/_pacote_option.fold.html b/functions/_pacote_option.fold.html index 1259e1669..51931dffc 100644 --- a/functions/_pacote_option.fold.html +++ b/functions/_pacote_option.fold.html @@ -4,4 +4,4 @@
  • onNone: (() => U)

    Function to evaluate if the option is None.

  • option: Option<T>

    Option containing the value to fold,

  • Returns U

    Folded option value.

    -
    +
    diff --git a/functions/_pacote_option.getOrElse.html b/functions/_pacote_option.getOrElse.html index d6cbd75c3..d417bb9e1 100644 --- a/functions/_pacote_option.getOrElse.html +++ b/functions/_pacote_option.getOrElse.html @@ -2,4 +2,4 @@ evaluates the provided function for an alternative.

    Type Parameters

    Parameters

    Returns T

    +

    Returns T

    diff --git a/functions/_pacote_option.isNone.html b/functions/_pacote_option.isNone.html index f6725aa38..d9068e25e 100644 --- a/functions/_pacote_option.isNone.html +++ b/functions/_pacote_option.isNone.html @@ -2,4 +2,4 @@

    Type Parameters

    Parameters

    Returns option is None

    Returns true if the passed option is a None. Otherwise, it returns false.

    -
    +
    diff --git a/functions/_pacote_option.isSome.html b/functions/_pacote_option.isSome.html index 26675b56a..fd2077e3b 100644 --- a/functions/_pacote_option.isSome.html +++ b/functions/_pacote_option.isSome.html @@ -2,4 +2,4 @@

    Type Parameters

    Parameters

    Returns option is Some<T>

    Returns true if the passed option is a Some. Otherwise, it returns false.

    -
    +
    diff --git a/functions/_pacote_option.map.html b/functions/_pacote_option.map.html index 174313db2..481a80c9e 100644 --- a/functions/_pacote_option.map.html +++ b/functions/_pacote_option.map.html @@ -3,4 +3,4 @@

    Type Parameters

    Parameters

    Returns Option<U>

    Mapped Option.

    -
    +
    diff --git a/functions/_pacote_option.ofNullable.html b/functions/_pacote_option.ofNullable.html index aa6ddb27d..6c18700c7 100644 --- a/functions/_pacote_option.ofNullable.html +++ b/functions/_pacote_option.ofNullable.html @@ -2,4 +2,4 @@

    Type Parameters

    Parameters

    Returns Option<T>

    If the value is null or undefined, it returns None. Otherwise, it returns Some(value).

    -
    +
    diff --git a/functions/_pacote_option.or.html b/functions/_pacote_option.or.html index c5a5d18d5..13fd71b23 100644 --- a/functions/_pacote_option.or.html +++ b/functions/_pacote_option.or.html @@ -4,4 +4,4 @@
  • option: Option<T>

    Option to evaluate.

  • Returns Option<T>

    The provided option if it is Some, otherwise the alternative is returned.

    -
    +
    diff --git a/functions/_pacote_option.tryCatch.html b/functions/_pacote_option.tryCatch.html index 811d22602..54f8b9733 100644 --- a/functions/_pacote_option.tryCatch.html +++ b/functions/_pacote_option.tryCatch.html @@ -2,4 +2,4 @@

    Type Parameters

    Parameters

    Returns Option<T>

    If the function throws an error, it returns None. Otherwise, it returns the result value in a Some.

    -
    +
    diff --git a/functions/_pacote_pipe.flow.html b/functions/_pacote_pipe.flow.html index 3523af512..fd615b501 100644 --- a/functions/_pacote_pipe.flow.html +++ b/functions/_pacote_pipe.flow.html @@ -1 +1 @@ -flow | Pacote
    • Type Parameters

      • A
      • B

      Parameters

      • Rest...fns: Compose1<A, B>

      Returns Fn<A, B>

    • Type Parameters

      • A
      • B
      • C

      Parameters

      • Rest...fns: Compose2<A, B, C>

      Returns Fn<A, C>

    • Type Parameters

      • A
      • B
      • C
      • D

      Parameters

      • Rest...fns: Compose3<A, B, C, D>

      Returns Fn<A, D>

    • Type Parameters

      • A
      • B
      • C
      • D
      • E

      Parameters

      • Rest...fns: Compose4<A, B, C, D, E>

      Returns Fn<A, E>

    • Type Parameters

      • A
      • B
      • C
      • D
      • E
      • F

      Parameters

      • Rest...fns: Compose5<A, B, C, D, E, F>

      Returns Fn<A, F>

    • Type Parameters

      • A
      • B
      • C
      • D
      • E
      • F
      • G

      Parameters

      • Rest...fns: Compose6<A, B, C, D, E, F, G>

      Returns Fn<A, G>

    • Type Parameters

      • A
      • B
      • C
      • D
      • E
      • F
      • G
      • H

      Parameters

      • Rest...fns: Compose7<A, B, C, D, E, F, G, H>

      Returns Fn<A, H>

    • Type Parameters

      • A
      • B
      • C
      • D
      • E
      • F
      • G
      • H
      • I

      Parameters

      • Rest...fns: Compose8<A, B, C, D, E, F, G, H, I>

      Returns Fn<A, I>

    +flow | Pacote
    • Type Parameters

      • A
      • B

      Parameters

      • Rest...fns: Compose1<A, B>

      Returns Fn<A, B>

    • Type Parameters

      • A
      • B
      • C

      Parameters

      • Rest...fns: Compose2<A, B, C>

      Returns Fn<A, C>

    • Type Parameters

      • A
      • B
      • C
      • D

      Parameters

      • Rest...fns: Compose3<A, B, C, D>

      Returns Fn<A, D>

    • Type Parameters

      • A
      • B
      • C
      • D
      • E

      Parameters

      • Rest...fns: Compose4<A, B, C, D, E>

      Returns Fn<A, E>

    • Type Parameters

      • A
      • B
      • C
      • D
      • E
      • F

      Parameters

      • Rest...fns: Compose5<A, B, C, D, E, F>

      Returns Fn<A, F>

    • Type Parameters

      • A
      • B
      • C
      • D
      • E
      • F
      • G

      Parameters

      • Rest...fns: Compose6<A, B, C, D, E, F, G>

      Returns Fn<A, G>

    • Type Parameters

      • A
      • B
      • C
      • D
      • E
      • F
      • G
      • H

      Parameters

      • Rest...fns: Compose7<A, B, C, D, E, F, G, H>

      Returns Fn<A, H>

    • Type Parameters

      • A
      • B
      • C
      • D
      • E
      • F
      • G
      • H
      • I

      Parameters

      • Rest...fns: Compose8<A, B, C, D, E, F, G, H, I>

      Returns Fn<A, I>

    diff --git a/functions/_pacote_pipe.pipe.html b/functions/_pacote_pipe.pipe.html index f54b0b253..797b718ad 100644 --- a/functions/_pacote_pipe.pipe.html +++ b/functions/_pacote_pipe.pipe.html @@ -1 +1 @@ -pipe | Pacote
    • Type Parameters

      • A

      Parameters

      • initial: A

      Returns A

    • Type Parameters

      • A
      • B

      Parameters

      • initial: A
      • Rest...fns: Compose1<A, B>

      Returns B

    • Type Parameters

      • A
      • B
      • C

      Parameters

      • initial: A
      • Rest...fns: Compose2<A, B, C>

      Returns C

    • Type Parameters

      • A
      • B
      • C
      • D

      Parameters

      • initial: A
      • Rest...fns: Compose3<A, B, C, D>

      Returns D

    • Type Parameters

      • A
      • B
      • C
      • D
      • E

      Parameters

      • initial: A
      • Rest...fns: Compose4<A, B, C, D, E>

      Returns E

    • Type Parameters

      • A
      • B
      • C
      • D
      • E
      • F

      Parameters

      • initial: A
      • Rest...fns: Compose5<A, B, C, D, E, F>

      Returns F

    • Type Parameters

      • A
      • B
      • C
      • D
      • E
      • F
      • G

      Parameters

      • initial: A
      • Rest...fns: Compose6<A, B, C, D, E, F, G>

      Returns G

    • Type Parameters

      • A
      • B
      • C
      • D
      • E
      • F
      • G
      • H

      Parameters

      • initial: A
      • Rest...fns: Compose7<A, B, C, D, E, F, G, H>

      Returns H

    • Type Parameters

      • A
      • B
      • C
      • D
      • E
      • F
      • G
      • H
      • I

      Parameters

      • initial: A
      • Rest...fns: Compose8<A, B, C, D, E, F, G, H, I>

      Returns I

    +pipe | Pacote
    • Type Parameters

      • A

      Parameters

      • initial: A

      Returns A

    • Type Parameters

      • A
      • B

      Parameters

      • initial: A
      • Rest...fns: Compose1<A, B>

      Returns B

    • Type Parameters

      • A
      • B
      • C

      Parameters

      • initial: A
      • Rest...fns: Compose2<A, B, C>

      Returns C

    • Type Parameters

      • A
      • B
      • C
      • D

      Parameters

      • initial: A
      • Rest...fns: Compose3<A, B, C, D>

      Returns D

    • Type Parameters

      • A
      • B
      • C
      • D
      • E

      Parameters

      • initial: A
      • Rest...fns: Compose4<A, B, C, D, E>

      Returns E

    • Type Parameters

      • A
      • B
      • C
      • D
      • E
      • F

      Parameters

      • initial: A
      • Rest...fns: Compose5<A, B, C, D, E, F>

      Returns F

    • Type Parameters

      • A
      • B
      • C
      • D
      • E
      • F
      • G

      Parameters

      • initial: A
      • Rest...fns: Compose6<A, B, C, D, E, F, G>

      Returns G

    • Type Parameters

      • A
      • B
      • C
      • D
      • E
      • F
      • G
      • H

      Parameters

      • initial: A
      • Rest...fns: Compose7<A, B, C, D, E, F, G, H>

      Returns H

    • Type Parameters

      • A
      • B
      • C
      • D
      • E
      • F
      • G
      • H
      • I

      Parameters

      • initial: A
      • Rest...fns: Compose8<A, B, C, D, E, F, G, H, I>

      Returns I

    diff --git a/functions/_pacote_pixels.pixels.html b/functions/_pacote_pixels.pixels.html index 286c626ee..3ebc80b8c 100644 --- a/functions/_pacote_pixels.pixels.html +++ b/functions/_pacote_pixels.pixels.html @@ -1 +1 @@ -pixels | Pacote
    • Parameters

      • length: string
      • Optionalelement: null | HTMLElement

      Returns number

    +pixels | Pacote
    • Parameters

      • length: string
      • Optionalelement: null | HTMLElement

      Returns number

    diff --git a/functions/_pacote_react_use_outside.useOutside.html b/functions/_pacote_react_use_outside.useOutside.html index a8e049ab9..b26eacd2e 100644 --- a/functions/_pacote_react_use_outside.useOutside.html +++ b/functions/_pacote_react_use_outside.useOutside.html @@ -1 +1 @@ -useOutside | Pacote
    • Type Parameters

      • E extends HTMLElement

      Parameters

      • type: (keyof DocumentEventMap) | (keyof DocumentEventMap)[]
      • handler: EventListener

      Returns RefObject<E>

    +useOutside | Pacote
    • Type Parameters

      • E extends HTMLElement

      Parameters

      • type: (keyof DocumentEventMap) | (keyof DocumentEventMap)[]
      • handler: EventListener

      Returns RefObject<E>

    diff --git a/functions/_pacote_react_with_props.withDefaultProps.html b/functions/_pacote_react_with_props.withDefaultProps.html index d89fac2e3..b360362e5 100644 --- a/functions/_pacote_react_with_props.withDefaultProps.html +++ b/functions/_pacote_react_with_props.withDefaultProps.html @@ -1 +1 @@ -withDefaultProps | Pacote
    +withDefaultProps | Pacote
    diff --git a/functions/_pacote_react_with_props.withProps.html b/functions/_pacote_react_with_props.withProps.html index db05aabc4..e72d89f79 100644 --- a/functions/_pacote_react_with_props.withProps.html +++ b/functions/_pacote_react_with_props.withProps.html @@ -1 +1 @@ -withProps | Pacote
    +withProps | Pacote
    diff --git a/functions/_pacote_result.Err-2.html b/functions/_pacote_result.Err-2.html index 6b5a3b495..11f5f9013 100644 --- a/functions/_pacote_result.Err-2.html +++ b/functions/_pacote_result.Err-2.html @@ -1,4 +1,4 @@ Err | Pacote
    • Wraps an error value in a Result.

      Type Parameters

      • E

      Parameters

      • value: E

        Error to wrap.

      Returns Result<never, E>

      Error result.

      -
    +
    diff --git a/functions/_pacote_result.Ok-2.html b/functions/_pacote_result.Ok-2.html index 34f59ea53..1f2b2e726 100644 --- a/functions/_pacote_result.Ok-2.html +++ b/functions/_pacote_result.Ok-2.html @@ -1,4 +1,4 @@ Ok | Pacote
    • Wraps a success value in a Result.

      Type Parameters

      • T

      Parameters

      • value: T

        Value to wrap.

      Returns Result<T, never>

      Successful result.

      -
    +
    diff --git a/functions/_pacote_result.and.html b/functions/_pacote_result.and.html index 2dcfa723d..f8d33b8ea 100644 --- a/functions/_pacote_result.and.html +++ b/functions/_pacote_result.and.html @@ -3,4 +3,4 @@
  • result: Result<T, E>

    Result to evaluate.

  • Returns Result<U, E>

    Result if it is Err, otherwise returns the alternative.

    -
    +
    diff --git a/functions/_pacote_result.bimap.html b/functions/_pacote_result.bimap.html index 2412000a9..9920174cb 100644 --- a/functions/_pacote_result.bimap.html +++ b/functions/_pacote_result.bimap.html @@ -4,4 +4,4 @@
  • onErr: ((err: E) => F)

    Error mapping function.

  • result: Result<T, E>

    Result to map.

  • Returns Result<U, F>

    Mapped result.

    -
    +
    diff --git a/functions/_pacote_result.err-1.html b/functions/_pacote_result.err-1.html index a8fbc3b5d..b0de17313 100644 --- a/functions/_pacote_result.err-1.html +++ b/functions/_pacote_result.err-1.html @@ -2,4 +2,4 @@

    Type Parameters

    Parameters

    Returns Option<E>

    None if the result is Ok, or Some wrapping the result error if it's Err.

    -
    +
    diff --git a/functions/_pacote_result.flatMap.html b/functions/_pacote_result.flatMap.html index 4ec8cc219..c0fc03dbc 100644 --- a/functions/_pacote_result.flatMap.html +++ b/functions/_pacote_result.flatMap.html @@ -2,4 +2,4 @@

    Type Parameters

    Parameters

    Returns Result<U, E>

    Flat mapped result.

    -
    +
    diff --git a/functions/_pacote_result.flatten.html b/functions/_pacote_result.flatten.html index d53f6ebb2..9cae6ed0a 100644 --- a/functions/_pacote_result.flatten.html +++ b/functions/_pacote_result.flatten.html @@ -2,4 +2,4 @@ Result<T, E>.

    Type Parameters

    Parameters

    Returns Result<T, E>

    Flattened result.

    -
    +
    diff --git a/functions/_pacote_result.fold.html b/functions/_pacote_result.fold.html index 5bd8cf324..b924bb1f5 100644 --- a/functions/_pacote_result.fold.html +++ b/functions/_pacote_result.fold.html @@ -4,4 +4,4 @@
  • onErr: ((err: E) => R)

    Error folding function.

  • result: Result<T, E>

    Result to fold.

  • Returns R

    Output of either the onOk or onErr functions.

    -
    +
    diff --git a/functions/_pacote_result.getOrElse.html b/functions/_pacote_result.getOrElse.html index e8ef32045..0402699fc 100644 --- a/functions/_pacote_result.getOrElse.html +++ b/functions/_pacote_result.getOrElse.html @@ -2,4 +2,4 @@

    Type Parameters

    Parameters

    Returns ((result: Result<T, E>) => T)

    If the result is Err, it evaluates the provided function for an alternative.

    -
    +
    diff --git a/functions/_pacote_result.isErr.html b/functions/_pacote_result.isErr.html index 5f07af1fc..2d6a05b99 100644 --- a/functions/_pacote_result.isErr.html +++ b/functions/_pacote_result.isErr.html @@ -2,4 +2,4 @@

    Type Parameters

    Parameters

    Returns value is Err<E>

    Returns true if the passed result is Err. Otherwise, it returns false.

    -
    +
    diff --git a/functions/_pacote_result.isOk.html b/functions/_pacote_result.isOk.html index b65e10beb..f8dc9ed8a 100644 --- a/functions/_pacote_result.isOk.html +++ b/functions/_pacote_result.isOk.html @@ -2,4 +2,4 @@

    Type Parameters

    Parameters

    Returns value is Ok<T>

    Returns true if the passed result is Ok. Otherwise, it returns false.

    -
    +
    diff --git a/functions/_pacote_result.map.html b/functions/_pacote_result.map.html index bd516215c..e5b40e0f7 100644 --- a/functions/_pacote_result.map.html +++ b/functions/_pacote_result.map.html @@ -3,4 +3,4 @@

    Type Parameters

    Parameters

    Returns Result<U, E>

    Mapped result value.

    -
    +
    diff --git a/functions/_pacote_result.mapErr.html b/functions/_pacote_result.mapErr.html index 27316b4c4..bbce25f25 100644 --- a/functions/_pacote_result.mapErr.html +++ b/functions/_pacote_result.mapErr.html @@ -3,4 +3,4 @@

    Type Parameters

    Parameters

    Returns Result<T, F>

    Mapped result error.

    -
    +
    diff --git a/functions/_pacote_result.ofNullable.html b/functions/_pacote_result.ofNullable.html index 89ef34bc7..e70083f15 100644 --- a/functions/_pacote_result.ofNullable.html +++ b/functions/_pacote_result.ofNullable.html @@ -5,4 +5,4 @@
  • value: T

    Value to wrap, unless it's null.

  • Returns Result<T, E>

    If null or undefined, it returns Err(error). Otherwise, it returns Ok(value).

    -
    +
    diff --git a/functions/_pacote_result.ofPromise.html b/functions/_pacote_result.ofPromise.html index 22be748a9..204fb3245 100644 --- a/functions/_pacote_result.ofPromise.html +++ b/functions/_pacote_result.ofPromise.html @@ -7,4 +7,4 @@ value is returned. Otherwise, a Promise of Err with the rejection error is returned. In either case, the newly returned promise will always resolve.

    -
    +
    diff --git a/functions/_pacote_result.ok-1.html b/functions/_pacote_result.ok-1.html index dbba26010..ec692558b 100644 --- a/functions/_pacote_result.ok-1.html +++ b/functions/_pacote_result.ok-1.html @@ -2,4 +2,4 @@

    Type Parameters

    Parameters

    Returns Option<T>

    None if the result is Err, or Some wrapping the result value if it's Ok.

    -
    +
    diff --git a/functions/_pacote_result.or.html b/functions/_pacote_result.or.html index 490fbf9c5..05b5f3c7f 100644 --- a/functions/_pacote_result.or.html +++ b/functions/_pacote_result.or.html @@ -3,4 +3,4 @@
  • result: Result<T, E>

    Result to evaluate.

  • Returns Result<T, E>

    Result if it is Ok, otherwise returns the alternative.

    -
    +
    diff --git a/functions/_pacote_result.tryCatch.html b/functions/_pacote_result.tryCatch.html index 1c671588d..bb71a04eb 100644 --- a/functions/_pacote_result.tryCatch.html +++ b/functions/_pacote_result.tryCatch.html @@ -5,4 +5,4 @@

    Returns Result<T, E>

    If an exception is thrown, an Err with the thrown error is returned. Otherwise, an Ok with the result of calling fn.

    -
    +
    diff --git a/functions/_pacote_retry.retry.html b/functions/_pacote_retry.retry.html index a42154850..686bdba16 100644 --- a/functions/_pacote_retry.retry.html +++ b/functions/_pacote_retry.retry.html @@ -8,4 +8,4 @@
    import { retry } from '@pacote/retry'

    await retry(async () => fetch(...), { retries: 3 })
    -
    +
    diff --git a/functions/_pacote_shuffle.shuffle.html b/functions/_pacote_shuffle.shuffle.html index 80cc05366..5cb2e4f19 100644 --- a/functions/_pacote_shuffle.shuffle.html +++ b/functions/_pacote_shuffle.shuffle.html @@ -1 +1 @@ -shuffle | Pacote
    • Type Parameters

      • T

      Parameters

      • items: readonly T[]

      Returns T[]

    +shuffle | Pacote
    • Type Parameters

      • T

      Parameters

      • items: readonly T[]

      Returns T[]

    diff --git a/functions/_pacote_task.Task-1.html b/functions/_pacote_task.Task-1.html index 5a64310f9..dd841898a 100644 --- a/functions/_pacote_task.Task-1.html +++ b/functions/_pacote_task.Task-1.html @@ -1,4 +1,4 @@ Task | Pacote
    • Creates a new task that asynchronously resolves to the provided result.

      Type Parameters

      • T

      Parameters

      • result: T

        Result to resolve the task with.

      Returns Task<T>

      A new task that resolves to the provided result.

      -
    +
    diff --git a/functions/_pacote_task.flatMap.html b/functions/_pacote_task.flatMap.html index d6bacc207..f733a5f75 100644 --- a/functions/_pacote_task.flatMap.html +++ b/functions/_pacote_task.flatMap.html @@ -3,4 +3,4 @@

    Type Parameters

    Parameters

    Returns Task<R>

    Flatmapped task.

    -
    +
    diff --git a/functions/_pacote_task.flatten.html b/functions/_pacote_task.flatten.html index 153c56ca1..80ce24e94 100644 --- a/functions/_pacote_task.flatten.html +++ b/functions/_pacote_task.flatten.html @@ -1,4 +1,4 @@ flatten | Pacote
    • Flatten a nested task into a single task.

      Type Parameters

      • T

      Parameters

      Returns Task<T>

      Flattened task.

      -
    +
    diff --git a/functions/_pacote_task.map.html b/functions/_pacote_task.map.html index 8253b3028..a9f3dd8da 100644 --- a/functions/_pacote_task.map.html +++ b/functions/_pacote_task.map.html @@ -3,4 +3,4 @@

    Type Parameters

    Parameters

    Returns Task<R>

    Mapped task.

    -
    +
    diff --git a/functions/_pacote_throttle.throttle.html b/functions/_pacote_throttle.throttle.html index b6dbde829..2c15545a0 100644 --- a/functions/_pacote_throttle.throttle.html +++ b/functions/_pacote_throttle.throttle.html @@ -1 +1 @@ -throttle | Pacote
    • Type Parameters

      • A extends any[]

      Parameters

      • fn: ((...args: A) => any)
          • (...args): any
          • Parameters

            • Rest...args: A

            Returns any

      • delay: number = 0

      Returns Throttled<A> & Cancellable

    +throttle | Pacote
    • Type Parameters

      • A extends any[]

      Parameters

      • fn: ((...args: A) => any)
          • (...args): any
          • Parameters

            • Rest...args: A

            Returns any

      • delay: number = 0

      Returns Throttled<A> & Cancellable

    diff --git a/functions/_pacote_u32.add.html b/functions/_pacote_u32.add.html index 4bafba674..71c287080 100644 --- a/functions/_pacote_u32.add.html +++ b/functions/_pacote_u32.add.html @@ -1 +1 @@ -add | Pacote
    +add | Pacote
    diff --git a/functions/_pacote_u32.and.html b/functions/_pacote_u32.and.html index b2b504112..b6b4bf801 100644 --- a/functions/_pacote_u32.and.html +++ b/functions/_pacote_u32.and.html @@ -1 +1 @@ -and | Pacote
    +and | Pacote
    diff --git a/functions/_pacote_u32.divide.html b/functions/_pacote_u32.divide.html index 0497099ab..3eeae137b 100644 --- a/functions/_pacote_u32.divide.html +++ b/functions/_pacote_u32.divide.html @@ -1 +1 @@ -divide | Pacote
    +divide | Pacote
    diff --git a/functions/_pacote_u32.equals.html b/functions/_pacote_u32.equals.html index 4219cc0bd..3d7100ef9 100644 --- a/functions/_pacote_u32.equals.html +++ b/functions/_pacote_u32.equals.html @@ -1 +1 @@ -equals | Pacote
    +equals | Pacote
    diff --git a/functions/_pacote_u32.from.html b/functions/_pacote_u32.from.html index cb469f3eb..4a8f2ebcd 100644 --- a/functions/_pacote_u32.from.html +++ b/functions/_pacote_u32.from.html @@ -1 +1 @@ -from | Pacote
    • Parameters

      • value: number

      Returns U32

    • Parameters

      • value: string
      • Optionalradix: number

      Returns U32

    +from | Pacote
    • Parameters

      • value: number

      Returns U32

    • Parameters

      • value: string
      • Optionalradix: number

      Returns U32

    diff --git a/functions/_pacote_u32.greaterThan.html b/functions/_pacote_u32.greaterThan.html index 68ca3ef3e..fe7d61862 100644 --- a/functions/_pacote_u32.greaterThan.html +++ b/functions/_pacote_u32.greaterThan.html @@ -1 +1 @@ -greaterThan | Pacote

    Function greaterThan

    +greaterThan | Pacote

    Function greaterThan

    diff --git a/functions/_pacote_u32.lessThan.html b/functions/_pacote_u32.lessThan.html index efde67e38..7b3b02c2d 100644 --- a/functions/_pacote_u32.lessThan.html +++ b/functions/_pacote_u32.lessThan.html @@ -1 +1 @@ -lessThan | Pacote

    Function lessThan

    +lessThan | Pacote

    Function lessThan

    diff --git a/functions/_pacote_u32.multiply.html b/functions/_pacote_u32.multiply.html index d491da6bb..85c12a31b 100644 --- a/functions/_pacote_u32.multiply.html +++ b/functions/_pacote_u32.multiply.html @@ -1 +1 @@ -multiply | Pacote

    Function multiply

    +multiply | Pacote

    Function multiply

    diff --git a/functions/_pacote_u32.negate.html b/functions/_pacote_u32.negate.html index ba1e2e8e5..dd3f14d83 100644 --- a/functions/_pacote_u32.negate.html +++ b/functions/_pacote_u32.negate.html @@ -1 +1 @@ -negate | Pacote
    +negate | Pacote
    diff --git a/functions/_pacote_u32.or.html b/functions/_pacote_u32.or.html index 6794ed5a9..0136d0839 100644 --- a/functions/_pacote_u32.or.html +++ b/functions/_pacote_u32.or.html @@ -1 +1 @@ -or | Pacote
    +or | Pacote
    diff --git a/functions/_pacote_u32.remainder.html b/functions/_pacote_u32.remainder.html index 1b99c62b1..b5c138eec 100644 --- a/functions/_pacote_u32.remainder.html +++ b/functions/_pacote_u32.remainder.html @@ -1 +1 @@ -remainder | Pacote

    Function remainder

    +remainder | Pacote

    Function remainder

    diff --git a/functions/_pacote_u32.rotateLeft.html b/functions/_pacote_u32.rotateLeft.html index 460f33ca9..90e0b8c0d 100644 --- a/functions/_pacote_u32.rotateLeft.html +++ b/functions/_pacote_u32.rotateLeft.html @@ -1 +1 @@ -rotateLeft | Pacote

    Function rotateLeft

    +rotateLeft | Pacote

    Function rotateLeft

    diff --git a/functions/_pacote_u32.rotateRight.html b/functions/_pacote_u32.rotateRight.html index 7c9a986a0..8e5e9a407 100644 --- a/functions/_pacote_u32.rotateRight.html +++ b/functions/_pacote_u32.rotateRight.html @@ -1 +1 @@ -rotateRight | Pacote

    Function rotateRight

    +rotateRight | Pacote

    Function rotateRight

    diff --git a/functions/_pacote_u32.shiftLeft.html b/functions/_pacote_u32.shiftLeft.html index 0f1fc414c..debf3b601 100644 --- a/functions/_pacote_u32.shiftLeft.html +++ b/functions/_pacote_u32.shiftLeft.html @@ -1 +1 @@ -shiftLeft | Pacote

    Function shiftLeft

    • Parameters

      • value: U32
      • bits: number
      • overflow: boolean = false

      Returns U32

    +shiftLeft | Pacote

    Function shiftLeft

    • Parameters

      • value: U32
      • bits: number
      • overflow: boolean = false

      Returns U32

    diff --git a/functions/_pacote_u32.shiftRight.html b/functions/_pacote_u32.shiftRight.html index 2c95c2b66..f3051b6a4 100644 --- a/functions/_pacote_u32.shiftRight.html +++ b/functions/_pacote_u32.shiftRight.html @@ -1 +1 @@ -shiftRight | Pacote

    Function shiftRight

    +shiftRight | Pacote

    Function shiftRight

    diff --git a/functions/_pacote_u32.subtract.html b/functions/_pacote_u32.subtract.html index 5ebae7a9c..b799cac57 100644 --- a/functions/_pacote_u32.subtract.html +++ b/functions/_pacote_u32.subtract.html @@ -1 +1 @@ -subtract | Pacote

    Function subtract

    +subtract | Pacote

    Function subtract

    diff --git a/functions/_pacote_u32.toNumber.html b/functions/_pacote_u32.toNumber.html index 4aee21db4..6f3ce5f66 100644 --- a/functions/_pacote_u32.toNumber.html +++ b/functions/_pacote_u32.toNumber.html @@ -1 +1 @@ -toNumber | Pacote

    Function toNumber

    • Parameters

      Returns number

    +toNumber | Pacote

    Function toNumber

    • Parameters

      Returns number

    diff --git a/functions/_pacote_u32.toString.html b/functions/_pacote_u32.toString.html index fc036890d..925ac5229 100644 --- a/functions/_pacote_u32.toString.html +++ b/functions/_pacote_u32.toString.html @@ -1 +1 @@ -toString | Pacote

    Function toString

    • Parameters

      • value: U32
      • radix: number = 10

      Returns string

    +toString | Pacote

    Function toString

    • Parameters

      • value: U32
      • radix: number = 10

      Returns string

    diff --git a/functions/_pacote_u32.xor.html b/functions/_pacote_u32.xor.html index bd3e2986d..fb1c9e630 100644 --- a/functions/_pacote_u32.xor.html +++ b/functions/_pacote_u32.xor.html @@ -1 +1 @@ -xor | Pacote
    +xor | Pacote
    diff --git a/functions/_pacote_u64.add.html b/functions/_pacote_u64.add.html index 89b02cbf2..936f32023 100644 --- a/functions/_pacote_u64.add.html +++ b/functions/_pacote_u64.add.html @@ -2,4 +2,4 @@

    Parameters

    Returns U64

    The sum of both values.

    -
    +
    diff --git a/functions/_pacote_u64.and.html b/functions/_pacote_u64.and.html index 5ef23d390..927a04dec 100644 --- a/functions/_pacote_u64.and.html +++ b/functions/_pacote_u64.and.html @@ -1 +1 @@ -and | Pacote
    +and | Pacote
    diff --git a/functions/_pacote_u64.divide.html b/functions/_pacote_u64.divide.html index 0a9e2f60c..d1bd06629 100644 --- a/functions/_pacote_u64.divide.html +++ b/functions/_pacote_u64.divide.html @@ -3,4 +3,4 @@

    Parameters

    Returns U64

    The first value divided by the second, rounded towards zero.

    -
    +
    diff --git a/functions/_pacote_u64.equals.html b/functions/_pacote_u64.equals.html index ab354caea..4fd33451f 100644 --- a/functions/_pacote_u64.equals.html +++ b/functions/_pacote_u64.equals.html @@ -1 +1 @@ -equals | Pacote
    +equals | Pacote
    diff --git a/functions/_pacote_u64.from.html b/functions/_pacote_u64.from.html index ab2599a9b..963972dc9 100644 --- a/functions/_pacote_u64.from.html +++ b/functions/_pacote_u64.from.html @@ -1,6 +1,6 @@ from | Pacote
    • Creates a new U64 from a number.

      Parameters

      • value: number

        Number to convert.

        -

      Returns U64

    • Creates a new U64 from a numeric string in any base.

      +

    Returns U64

  • Creates a new U64 from a numeric string in any base.

    Parameters

    • value: string

      Numerical string to convert.

    • Optionalradix: number

      Base radix, defaults to 10.

      -

    Returns U64

  • +

    Returns U64

    diff --git a/functions/_pacote_u64.greaterThan.html b/functions/_pacote_u64.greaterThan.html index 428faf38b..a45973d77 100644 --- a/functions/_pacote_u64.greaterThan.html +++ b/functions/_pacote_u64.greaterThan.html @@ -1 +1 @@ -greaterThan | Pacote

    Function greaterThan

    +greaterThan | Pacote

    Function greaterThan

    diff --git a/functions/_pacote_u64.lessThan.html b/functions/_pacote_u64.lessThan.html index 2afcb980c..f88da9100 100644 --- a/functions/_pacote_u64.lessThan.html +++ b/functions/_pacote_u64.lessThan.html @@ -1 +1 @@ -lessThan | Pacote

    Function lessThan

    +lessThan | Pacote

    Function lessThan

    diff --git a/functions/_pacote_u64.multiply.html b/functions/_pacote_u64.multiply.html index 81d2c8fe6..246e12c4d 100644 --- a/functions/_pacote_u64.multiply.html +++ b/functions/_pacote_u64.multiply.html @@ -2,4 +2,4 @@

    Parameters

    Returns U64

    The product of the two values.

    -
    +
    diff --git a/functions/_pacote_u64.negate.html b/functions/_pacote_u64.negate.html index 93b27909d..ab904fc49 100644 --- a/functions/_pacote_u64.negate.html +++ b/functions/_pacote_u64.negate.html @@ -2,4 +2,4 @@ operator.

    Parameters

    Returns U64

    Negated value.

    -
    +
    diff --git a/functions/_pacote_u64.or.html b/functions/_pacote_u64.or.html index ea3391730..ce31db7ab 100644 --- a/functions/_pacote_u64.or.html +++ b/functions/_pacote_u64.or.html @@ -1 +1 @@ -or | Pacote
    +or | Pacote
    diff --git a/functions/_pacote_u64.remainder.html b/functions/_pacote_u64.remainder.html index e924f70fa..85c2686a1 100644 --- a/functions/_pacote_u64.remainder.html +++ b/functions/_pacote_u64.remainder.html @@ -3,4 +3,4 @@

    Parameters

    Returns U64

    The remainder of the division of the two values.

    -
    +
    diff --git a/functions/_pacote_u64.rotateLeft.html b/functions/_pacote_u64.rotateLeft.html index ff5eaf309..0952143cf 100644 --- a/functions/_pacote_u64.rotateLeft.html +++ b/functions/_pacote_u64.rotateLeft.html @@ -1 +1 @@ -rotateLeft | Pacote

    Function rotateLeft

    +rotateLeft | Pacote

    Function rotateLeft

    diff --git a/functions/_pacote_u64.rotateRight.html b/functions/_pacote_u64.rotateRight.html index ed9b7fed5..972a92fe7 100644 --- a/functions/_pacote_u64.rotateRight.html +++ b/functions/_pacote_u64.rotateRight.html @@ -1 +1 @@ -rotateRight | Pacote

    Function rotateRight

    +rotateRight | Pacote

    Function rotateRight

    diff --git a/functions/_pacote_u64.shiftLeft.html b/functions/_pacote_u64.shiftLeft.html index 7b885ba47..a9873b092 100644 --- a/functions/_pacote_u64.shiftLeft.html +++ b/functions/_pacote_u64.shiftLeft.html @@ -1 +1 @@ -shiftLeft | Pacote

    Function shiftLeft

    • Parameters

      • value: U64
      • bits: number
      • overflow: boolean = false

      Returns U64

    +shiftLeft | Pacote

    Function shiftLeft

    • Parameters

      • value: U64
      • bits: number
      • overflow: boolean = false

      Returns U64

    diff --git a/functions/_pacote_u64.shiftRight.html b/functions/_pacote_u64.shiftRight.html index dc15c7080..d87208ede 100644 --- a/functions/_pacote_u64.shiftRight.html +++ b/functions/_pacote_u64.shiftRight.html @@ -1 +1 @@ -shiftRight | Pacote

    Function shiftRight

    +shiftRight | Pacote

    Function shiftRight

    diff --git a/functions/_pacote_u64.subtract.html b/functions/_pacote_u64.subtract.html index 1feef16fa..b8fcf7dcb 100644 --- a/functions/_pacote_u64.subtract.html +++ b/functions/_pacote_u64.subtract.html @@ -2,4 +2,4 @@

    Parameters

    Returns U64

    The total of the second value subtracted from the first.

    -
    +
    diff --git a/functions/_pacote_u64.toNumber.html b/functions/_pacote_u64.toNumber.html index 3d562b439..911b2136b 100644 --- a/functions/_pacote_u64.toNumber.html +++ b/functions/_pacote_u64.toNumber.html @@ -1 +1 @@ -toNumber | Pacote

    Function toNumber

    • Parameters

      Returns number

    +toNumber | Pacote

    Function toNumber

    • Parameters

      Returns number

    diff --git a/functions/_pacote_u64.toString.html b/functions/_pacote_u64.toString.html index 9472d45d6..78d1bd6b6 100644 --- a/functions/_pacote_u64.toString.html +++ b/functions/_pacote_u64.toString.html @@ -1 +1 @@ -toString | Pacote

    Function toString

    • Parameters

      • value: U64
      • radix: number = 10

      Returns string

    +toString | Pacote

    Function toString

    • Parameters

      • value: U64
      • radix: number = 10

      Returns string

    diff --git a/functions/_pacote_u64.xor.html b/functions/_pacote_u64.xor.html index 260f05706..85cf31eca 100644 --- a/functions/_pacote_u64.xor.html +++ b/functions/_pacote_u64.xor.html @@ -1 +1 @@ -xor | Pacote
    +xor | Pacote
    diff --git a/functions/_pacote_validation.lift.html b/functions/_pacote_validation.lift.html index 89074543e..762e165c5 100644 --- a/functions/_pacote_validation.lift.html +++ b/functions/_pacote_validation.lift.html @@ -3,4 +3,4 @@ array containting one or more errors).

    Type Parameters

    Parameters

    Returns ((value: unknown) => Validation<T, E>)

    Lifted function.

    -
    +
    diff --git a/functions/_pacote_validation.validation-1.html b/functions/_pacote_validation.validation-1.html index 120ff709d..8d649caaf 100644 --- a/functions/_pacote_validation.validation-1.html +++ b/functions/_pacote_validation.validation-1.html @@ -6,4 +6,4 @@ Ok with the originally passed value.

    Type Parameters

    Parameters

    Returns ((value: T) => Validation<T, E>)

    Validation function.

    -
    +
    diff --git a/functions/_pacote_xxhash.xxh64.html b/functions/_pacote_xxhash.xxh64.html index 70df60f58..8b7649f2a 100644 --- a/functions/_pacote_xxhash.xxh64.html +++ b/functions/_pacote_xxhash.xxh64.html @@ -4,4 +4,4 @@
    import { xxh64 } from '@pacote/xxhash'

    const hasher = xxh64(2654435761)

    hasher.update('data').digest('hex') // => '5014607643a9b4c3'
    -
    +
    diff --git a/functions/_pacote_xxhash.xxh64BigInt.html b/functions/_pacote_xxhash.xxh64BigInt.html index dce7b9d40..0b4162e15 100644 --- a/functions/_pacote_xxhash.xxh64BigInt.html +++ b/functions/_pacote_xxhash.xxh64BigInt.html @@ -6,4 +6,4 @@
    import { xxh64BigInt } from '@pacote/xxhash'

    const hasher = xxh64BigInt(2654435761)

    hasher.update('data').digest('hex') // => '5014607643a9b4c3'
    -
    +
    diff --git a/interfaces/_pacote_flux_actions.Action.html b/interfaces/_pacote_flux_actions.Action.html index 8021099ca..d3d247e7e 100644 --- a/interfaces/_pacote_flux_actions.Action.html +++ b/interfaces/_pacote_flux_actions.Action.html @@ -1,4 +1,4 @@ -Action | Pacote

    Interface Action<P, M>

    interface Action<P, M> {
        meta: M;
        payload: P;
        type: string;
    }

    Type Parameters

    • P = any
    • M = any

    Properties

    meta +Action | Pacote

    Interface Action<P, M>

    interface Action<P, M> {
        meta: M;
        payload: P;
        type: string;
    }

    Type Parameters

    • P = any
    • M = any

    Properties

    Properties

    meta: M
    payload: P
    type: string
    +

    Properties

    meta: M
    payload: P
    type: string
    diff --git a/interfaces/_pacote_option.None.html b/interfaces/_pacote_option.None.html index 235e399a5..e5a6ff2ce 100644 --- a/interfaces/_pacote_option.None.html +++ b/interfaces/_pacote_option.None.html @@ -1,3 +1,3 @@ None | Pacote

    No value Option type.

    -
    interface None {
        type: typeof T_NONE;
    }

    Properties

    Properties

    type: typeof T_NONE
    +
    interface None {
        type: typeof T_NONE;
    }

    Properties

    Properties

    type: typeof T_NONE
    diff --git a/interfaces/_pacote_option.Some.html b/interfaces/_pacote_option.Some.html index fb45ddaee..645bb05de 100644 --- a/interfaces/_pacote_option.Some.html +++ b/interfaces/_pacote_option.Some.html @@ -1,6 +1,6 @@ Some | Pacote

    Interface Some<T>

    Option type wrapping a value of type T.

    interface Some<T> {
        constructor: any;
        type: typeof T_SOME;
        value: T;
    }

    Type Parameters

    • T

      Wrapped value type.

      -

    Constructors

    Constructors

    Properties

    Constructors

    constructor: any

    Properties

    type: typeof T_SOME
    value: T
    +

    Constructors

    constructor: any

    Properties

    type: typeof T_SOME
    value: T
    diff --git a/interfaces/_pacote_result.Err.html b/interfaces/_pacote_result.Err.html index b9ecbcc9b..8a7ca4e6c 100644 --- a/interfaces/_pacote_result.Err.html +++ b/interfaces/_pacote_result.Err.html @@ -1,6 +1,6 @@ Err | Pacote

    Interface Err<E>

    Error result type.

    interface Err<E> {
        constructor: any;
        type: typeof T_ERR;
        value: E;
    }

    Type Parameters

    • E

      Error type.

      -

    Constructors

    Constructors

    Properties

    Constructors

    constructor: any

    Properties

    type: typeof T_ERR
    value: E
    +

    Constructors

    constructor: any

    Properties

    type: typeof T_ERR
    value: E
    diff --git a/interfaces/_pacote_result.Ok.html b/interfaces/_pacote_result.Ok.html index f72803cd2..91201c34c 100644 --- a/interfaces/_pacote_result.Ok.html +++ b/interfaces/_pacote_result.Ok.html @@ -1,6 +1,6 @@ Ok | Pacote

    Interface Ok<T>

    Successful result type.

    interface Ok<T> {
        constructor: any;
        type: typeof T_OK;
        value: T;
    }

    Type Parameters

    • T

      Sucess value type.

      -

    Constructors

    Constructors

    Properties

    Constructors

    constructor: any

    Properties

    type: typeof T_OK
    value: T
    +

    Constructors

    constructor: any

    Properties

    type: typeof T_OK
    value: T
    diff --git a/interfaces/_pacote_xxhash.XXHash.html b/interfaces/_pacote_xxhash.XXHash.html index 2e61e45e5..fe72e0e5e 100644 --- a/interfaces/_pacote_xxhash.XXHash.html +++ b/interfaces/_pacote_xxhash.XXHash.html @@ -1,13 +1,13 @@ -XXHash | Pacote

    Interface XXHash<T>

    interface XXHash<T> {
        digest(encoding: "hex"): string;
        reset(seed?: number | T): void;
        update(input: string | ArrayBuffer): XXHash<T>;
    }

    Type Parameters

    • T

    Methods

    digest +XXHash | Pacote

    Interface XXHash<T>

    interface XXHash<T> {
        digest(encoding: "hex"): string;
        reset(seed?: number | T): void;
        update(input: string | ArrayBuffer): XXHash<T>;
    }

    Type Parameters

    • T

    Methods

    • Outputs the hexadecimal hash of the provided data.

      Parameters

      • encoding: "hex"

        Digest encoding. Only hex is supported at this time.

        -

      Returns string

    • Resets the hasher state with an optional seed.

      +

    Returns string

    • Resets the hasher state with an optional seed.

      Parameters

      • Optionalseed: number | T

        Optional seed value. If a value is not provided, then it remains the one used the last time the hasher was either created or reset.

        -

      Returns void

    • Updates the hasher state with data from a string or buffer to hash.

      +

    Returns void

    • Updates the hasher state with data from a string or buffer to hash.

      The hasher instance is returned for chaining other methods.

      Parameters

      • input: string | ArrayBuffer

        Data to hash.

        -

      Returns XXHash<T>

    +

    Returns XXHash<T>

    diff --git a/types/_pacote_bloom_search.Index.html b/types/_pacote_bloom_search.Index.html index 95bc20d19..fbfd7c68f 100644 --- a/types/_pacote_bloom_search.Index.html +++ b/types/_pacote_bloom_search.Index.html @@ -1 +1 @@ -Index | Pacote

    Type Alias Index<Document, SummaryField>

    Index<Document, SummaryField>: {
        documents: Record<string, IndexedDocument<Document, SummaryField>>;
        version: number;
    }

    Type Parameters

    • Document
    • SummaryField extends keyof Document
    +Index | Pacote

    Type Alias Index<Document, SummaryField>

    Index<Document, SummaryField>: {
        documents: Record<string, IndexedDocument<Document, SummaryField>>;
        version: number;
    }

    Type Parameters

    • Document
    • SummaryField extends keyof Document
    diff --git a/types/_pacote_bloom_search.IndexedDocument.html b/types/_pacote_bloom_search.IndexedDocument.html index a34c62ac9..7d00cfd58 100644 --- a/types/_pacote_bloom_search.IndexedDocument.html +++ b/types/_pacote_bloom_search.IndexedDocument.html @@ -4,4 +4,4 @@

    Type declaration

    +
    diff --git a/types/_pacote_bloom_search.Options.html b/types/_pacote_bloom_search.Options.html index c23f8a2ff..c7130e633 100644 --- a/types/_pacote_bloom_search.Options.html +++ b/types/_pacote_bloom_search.Options.html @@ -32,4 +32,4 @@
  • Optionaltokenizer?: TokenizerFunction

    Allows a custom tokenizer function. By default content is transformed to lowercase, split at every whitespace or hyphen, and stripped of any non-word (A-Z, 0-9, and _) characters.

    -
  • +
    diff --git a/types/_pacote_bloom_search.PreprocessFunction.html b/types/_pacote_bloom_search.PreprocessFunction.html index 6659af1b0..16ea99b09 100644 --- a/types/_pacote_bloom_search.PreprocessFunction.html +++ b/types/_pacote_bloom_search.PreprocessFunction.html @@ -1 +1 @@ -PreprocessFunction | Pacote

    Type Alias PreprocessFunction<Document, Field>

    PreprocessFunction<Document, Field>: ((value: Document[Field], field: Field, document: Document) => string)

    Type Parameters

    +PreprocessFunction | Pacote

    Type Alias PreprocessFunction<Document, Field>

    PreprocessFunction<Document, Field>: ((value: Document[Field], field: Field, document: Document) => string)

    Type Parameters

    diff --git a/types/_pacote_bloom_search.StemmerFunction.html b/types/_pacote_bloom_search.StemmerFunction.html index 81cb48bc8..9e0846dac 100644 --- a/types/_pacote_bloom_search.StemmerFunction.html +++ b/types/_pacote_bloom_search.StemmerFunction.html @@ -1 +1 @@ -StemmerFunction | Pacote
    StemmerFunction: ((token: string, language?: string) => string)
    +StemmerFunction | Pacote
    StemmerFunction: ((token: string, language?: string) => string)
    diff --git a/types/_pacote_bloom_search.StopwordsFunction.html b/types/_pacote_bloom_search.StopwordsFunction.html index a7013c537..9304940e1 100644 --- a/types/_pacote_bloom_search.StopwordsFunction.html +++ b/types/_pacote_bloom_search.StopwordsFunction.html @@ -1 +1 @@ -StopwordsFunction | Pacote
    StopwordsFunction: ((token: string, language?: string) => boolean)
    +StopwordsFunction | Pacote
    StopwordsFunction: ((token: string, language?: string) => boolean)
    diff --git a/types/_pacote_bloom_search.TokenizerFunction.html b/types/_pacote_bloom_search.TokenizerFunction.html index e0e4a6c78..1a3140e24 100644 --- a/types/_pacote_bloom_search.TokenizerFunction.html +++ b/types/_pacote_bloom_search.TokenizerFunction.html @@ -1 +1 @@ -TokenizerFunction | Pacote
    TokenizerFunction: ((token: string, language?: string) => string[])
    +TokenizerFunction | Pacote
    TokenizerFunction: ((token: string, language?: string) => string[])
    diff --git a/types/_pacote_immutable.Immutable.html b/types/_pacote_immutable.Immutable.html index 06cec19fc..dcec1b132 100644 --- a/types/_pacote_immutable.Immutable.html +++ b/types/_pacote_immutable.Immutable.html @@ -1 +1 @@ -Immutable | Pacote

    Type Alias Immutable<T>

    Immutable<T>: T extends (infer E)[]
        ? ImmutableArray<E>
        : T extends Map<infer K, infer V>
            ? ImmutableMap<K, V>
            : T extends Set<infer E>
                ? ImmutableSet<E>
                : T extends Record<string, infer V>
                    ? ImmutableObject<T, V>
                    : T

    Type Parameters

    • T
    +Immutable | Pacote

    Type Alias Immutable<T>

    Immutable<T>: T extends (infer E)[]
        ? ImmutableArray<E>
        : T extends Map<infer K, infer V>
            ? ImmutableMap<K, V>
            : T extends Set<infer E>
                ? ImmutableSet<E>
                : T extends Record<string, infer V>
                    ? ImmutableObject<T, V>
                    : T

    Type Parameters

    • T
    diff --git a/types/_pacote_memoize.Options.html b/types/_pacote_memoize.Options.html index c7fd8605d..d765070c7 100644 --- a/types/_pacote_memoize.Options.html +++ b/types/_pacote_memoize.Options.html @@ -1,3 +1,3 @@ Options | Pacote
    Options: {
        capacity?: number;
    }

    Type declaration

    • Optionalcapacity?: number

      Maximum number of cached results. If set, caching will use a least-recently used strategy to evict excess items.

      -
    +
    diff --git a/types/_pacote_non_empty_array.NonEmptyArray.html b/types/_pacote_non_empty_array.NonEmptyArray.html index 347e982e9..ff6db31ab 100644 --- a/types/_pacote_non_empty_array.NonEmptyArray.html +++ b/types/_pacote_non_empty_array.NonEmptyArray.html @@ -1 +1 @@ -NonEmptyArray | Pacote
    NonEmptyArray<T>: [T, ...T[]]

    Type Parameters

    • T
    +NonEmptyArray | Pacote
    NonEmptyArray<T>: [T, ...T[]]

    Type Parameters

    • T
    diff --git a/types/_pacote_option.Option.html b/types/_pacote_option.Option.html index 23e8fae49..5fab24ff9 100644 --- a/types/_pacote_option.Option.html +++ b/types/_pacote_option.Option.html @@ -1,3 +1,3 @@ Option | Pacote

    Type Alias Option<T>

    Option<T>: None | Some<T>

    Option<T> type, which is a union of None and Some<T>.

    Type Parameters

    • T

      Wrapped value type.

      -
    +
    diff --git a/types/_pacote_result.Result.html b/types/_pacote_result.Result.html index d40636392..fb1847ab0 100644 --- a/types/_pacote_result.Result.html +++ b/types/_pacote_result.Result.html @@ -1,4 +1,4 @@ Result | Pacote

    Type Alias Result<T, E>

    Result<T, E>: Ok<T> | Err<E>

    Result type.

    Type Parameters

    • T

      Sucess value type.

    • E

      Error type.

      -
    +
    diff --git a/types/_pacote_retry.RetryOptions.html b/types/_pacote_retry.RetryOptions.html index 3701526ef..21ab5184a 100644 --- a/types/_pacote_retry.RetryOptions.html +++ b/types/_pacote_retry.RetryOptions.html @@ -3,4 +3,4 @@ interval between attempts will increase exponentially based on it.

  • Optionalretries?: number

    Maximum number of times the invocation is retried.

  • Optionaltimeout?: number

    Time in milliseconds after which the function will stop being retried.

    -
  • +
    diff --git a/types/_pacote_task.Task.html b/types/_pacote_task.Task.html index 967b7b5ee..f3411851d 100644 --- a/types/_pacote_task.Task.html +++ b/types/_pacote_task.Task.html @@ -1 +1 @@ -Task | Pacote

    Type Alias Task<T>

    Task<T>: (() => Promise<T>)

    Type Parameters

    • T
    +Task | Pacote

    Type Alias Task<T>

    Task<T>: (() => Promise<T>)

    Type Parameters

    • T
    diff --git a/types/_pacote_u32.U32.html b/types/_pacote_u32.U32.html index ab6bee499..35d3b7eaa 100644 --- a/types/_pacote_u32.U32.html +++ b/types/_pacote_u32.U32.html @@ -1 +1 @@ -U32 | Pacote

    Type Alias U32

    U32: readonly [number, number]
    +U32 | Pacote

    Type Alias U32

    U32: readonly [number, number]
    diff --git a/types/_pacote_u64.U64.html b/types/_pacote_u64.U64.html index 8e82e7111..e536e90e8 100644 --- a/types/_pacote_u64.U64.html +++ b/types/_pacote_u64.U64.html @@ -1 +1 @@ -U64 | Pacote

    Type Alias U64

    U64: readonly [number, number, number, number]
    +U64 | Pacote

    Type Alias U64

    U64: readonly [number, number, number, number]
    diff --git a/types/_pacote_validation.Validation.html b/types/_pacote_validation.Validation.html index e2a3da55f..73468ea3b 100644 --- a/types/_pacote_validation.Validation.html +++ b/types/_pacote_validation.Validation.html @@ -1,4 +1,4 @@ Validation | Pacote

    Type Alias Validation<T, E>

    Validation<T, E>: Result<T, NonEmptyArray<E>>

    Validation data type.

    Type Parameters

    • T

      Validated value type.

    • E

      Validation error type.

      -
    +
    diff --git a/variables/_pacote_jest_either.default.html b/variables/_pacote_jest_either.default.html index 316a1d7b1..97a8e62a5 100644 --- a/variables/_pacote_jest_either.default.html +++ b/variables/_pacote_jest_either.default.html @@ -1 +1 @@ -default | Pacote
    default: {
        toBeEither: ((actual: unknown) => {
            message: (() => string);
            pass: boolean;
        });
        toBeLeft: ((actual: Either<unknown, unknown>) => {
            message: (() => string);
            pass: boolean;
        });
        toBeRight: ((actual: Either<unknown, unknown>) => {
            message: (() => string);
            pass: boolean;
        });
        toEqualLeft: (<L>(actual: Either<L, unknown>, expected: AsymmetricMatcher | L) => {
            actual: Either<L, unknown>;
            expected: AsymmetricMatcher | L;
            message: (() => string);
            pass: boolean;
        });
        toEqualRight: (<R>(actual: Either<unknown, R>, expected: AsymmetricMatcher | R) => {
            actual: Either<unknown, R>;
            expected: AsymmetricMatcher | R;
            message: (() => string);
            pass: boolean;
        });
        toMatchLeft: {
            (actual: Either<string, unknown>, expected: RegExp): any;
            <L>(actual: Either<L, unknown>, expected: Partial<L>): any;
        };
        toMatchRight: {
            (actual: Either<unknown, string>, expected: RegExp): any;
            <R>(actual: Either<unknown, R>, expected: Partial<R>): any;
        };
    }
    +default | Pacote
    default: {
        toBeEither: ((actual: unknown) => {
            message: (() => string);
            pass: boolean;
        });
        toBeLeft: ((actual: Either<unknown, unknown>) => {
            message: (() => string);
            pass: boolean;
        });
        toBeRight: ((actual: Either<unknown, unknown>) => {
            message: (() => string);
            pass: boolean;
        });
        toEqualLeft: (<L>(actual: Either<L, unknown>, expected: AsymmetricMatcher | L) => {
            actual: Either<L, unknown>;
            expected: AsymmetricMatcher | L;
            message: (() => string);
            pass: boolean;
        });
        toEqualRight: (<R>(actual: Either<unknown, R>, expected: AsymmetricMatcher | R) => {
            actual: Either<unknown, R>;
            expected: AsymmetricMatcher | R;
            message: (() => string);
            pass: boolean;
        });
        toMatchLeft: {
            (actual: Either<string, unknown>, expected: RegExp): any;
            <L>(actual: Either<L, unknown>, expected: Partial<L>): any;
        };
        toMatchRight: {
            (actual: Either<unknown, string>, expected: RegExp): any;
            <R>(actual: Either<unknown, R>, expected: Partial<R>): any;
        };
    }
    diff --git a/variables/_pacote_option.None-1.html b/variables/_pacote_option.None-1.html index e55da0459..6bd959008 100644 --- a/variables/_pacote_option.None-1.html +++ b/variables/_pacote_option.None-1.html @@ -1,2 +1,2 @@ None | Pacote
    None: None

    Represents no value.

    -
    +
    diff --git a/variables/_pacote_u32.ZERO.html b/variables/_pacote_u32.ZERO.html index 816df1e65..97cdf39da 100644 --- a/variables/_pacote_u32.ZERO.html +++ b/variables/_pacote_u32.ZERO.html @@ -1 +1 @@ -ZERO | Pacote

    Variable ZEROConst

    ZERO: U32 = ...
    +ZERO | Pacote

    Variable ZEROConst

    ZERO: U32 = ...
    diff --git a/variables/_pacote_u64.ZERO.html b/variables/_pacote_u64.ZERO.html index 85b41428a..8a64e2886 100644 --- a/variables/_pacote_u64.ZERO.html +++ b/variables/_pacote_u64.ZERO.html @@ -1,2 +1,2 @@ ZERO | Pacote

    Variable ZEROConst Readonly

    ZERO: U64 = ...

    Represents the zero value, or [0, 0, 0, 0].

    -
    +