Expand description
§serde_json_lodash
A library uses lodash.js style functions to handle serde_json::Value
§Usage
#[macro_use] extern crate serde_json_lodash;
use serde_json::json;
fn main() {
// Macro form: variadic / optional arguments, like the JS original
assert_eq!(
merge!(json!({"a": 1}), json!({"b": 2}), json!({"c": 3})),
json!({"a": 1, "b": 2, "c": 3})
);
// Function form: fixed arguments
use serde_json_lodash::capitalize;
assert_eq!(capitalize(json!("FRED")), json!("Fred"));
// A data argument can be a primitive instead of a `json!` value; the
// `_x` form returns a primitive instead of a `Value`.
assert_eq!(capitalize!("FRED"), json!("Fred"));
assert_eq!(capitalize_x!("FRED"), "Fred".to_owned());
}§Naming: _x primitive-output helpers
Everything is serde_json::Value in and out. A data argument may also be a
primitive (the base fn/macro are generic over Into<Value>), and every
function has a _x variant that returns a primitive instead of a Value:
| Form | Output | Example (either arg form works) |
|---|---|---|
capitalize | Value | capitalize("FRED") // json!("Fred") |
capitalize_x | String | capitalize_x("FRED") // "Fred" |
Options that aren’t data (sizes, indexes, pad chars) stay primitive
(usize, isize, &str); predicates use Fn(&Value) -> bool. Where a
result has no single primitive form (a collection, or a runtime-typed value
like get/nth), _x is an unimplemented todo!() marker. JSON has no
undefined, so functions that would return it return Value::Null.
Every name exists as a fn and a macro, for both the base and _x form.
§Primary macro vs. auxiliary forms
For each lodash function the primary macro (e.g. capitalize!) is the
main, fully-documented entry point. Its doc has two sections:
Examples:— mirrors the lodash documentation for that function.Additional cases:— the interesting behavior: edge cases, empty/optional arguments, type coercion and JSON-specific quirks.
Every other form is auxiliary: the plain function
(capitalize()) and the _x primitive-output helper with
its macro (capitalize_x(), capitalize_x!). An
auxiliary item’s Additional cases: is there only to show how to call
that particular form — one short example — not to re-cover the edge cases.
For functions where an argument may reasonably be a primitive (e.g. a string
function’s input), the base fn and macro are generic over
Into<Value>, so a &str/String/number
primitive can be passed directly instead of wrapping it in json!. Where a
result has no single primitive form (a collection or a runtime-dynamic
value), the _x helper is a todo!() marker documenting that.
So: to understand a function’s behavior, read its primary macro; to see how
to call a specific form (fn vs macro, Value vs primitive), glance at that
item’s one-line example.
§Features
No features are enabled by default (snake_case fns/macros only). Opt in as needed:
| Feature | Description |
|---|---|
alias | Aliasing machinery + snake_case lodash aliases (first, entries, has_in, …). Without it, use the canonical name (head, not first). Pulls in the optional paste crate. |
camel | camelCase aliases (isEmpty, hasIn, …) and their X-suffixed _x forms (isEmptyX). Requires (and enables) alias. |
lazy_static | Enables unique_id / uniqueId. |
all | camel + lazy_static. |
Each alias re-exports the whole family (fn, macro, and both _x variants);
snake aliases keep the _x suffix (has_in_x), camelCase aliases use X
(hasInX).
§Iteratee shorthands
Like lodash, the collection macros accept a shorthand in place of a
callback: an inline json! object is a partial deep match (_.matches), a
json!([path, value]) pair is _.matchesProperty, and a string literal is
a _.property path — e.g. filter!(users, json!({"active": true})) or
map!(users, "user"). The combinators behind them are real functions too:
iteratee(), matches(),
matches_property() and property()
return closures you can pass anywhere a callback is expected (useful when
the spec lives in a variable).
The inline form is recognized syntactically: exactly the tokens
json!(…) or serde_json::json!(…) (the contents are expanded with the
bundled serde_json, so it works even without importing json!). Any
other spelling — a renamed crate path like my_json::json!(…), or a
Value in a variable — is passed through as an expression, so wrap it in a
combinator instead: matches()/matches_property()
in predicate positions, iteratee()/property()
in iteratee positions.
§What isn’t ported
Functions whose result is itself a function (debounce, curry,
memoize, flow, …) or that invoke object methods (invoke,
invokeMap, create) have no meaningful mapping onto serde_json::Value
and are intentionally left unimplemented. Each such stub is annotated in
the source with the reason. (iteratee, matches, matchesProperty and
property are ported — they return Rust closures.)
Modules§
- lib
- Re-exports of the
serde_jsontypes this crate operates on, so callers can name them without a directserde_jsondependency.
Macros§
- add
- See lodash add
- add_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use add! and read the returnedValue. - after
- Not ported. Returns a function invoked only after N calls; a function is not a serde_json::Value.
- after_x
- Not ported. Returns a function invoked only after N calls; a function is not a serde_json::Value.
- ary
- Not ported. Caps a function’s argument count; operates on a function, not a Value.
- ary_x
- Not ported. Caps a function’s argument count; operates on a function, not a Value.
- assign
- See lodash assign
- assign_
with - See lodash assignWith
- assign_
with_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use assign_with! and read the returnedValue. - assign_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use assign! and read the returnedValue. - at
- See lodash at
- at_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use at! and read the returnedValue. - attempt
- Not ported. Invokes a function and captures thrown errors; no function to invoke in JSON.
- attempt_
x - Not ported. Invokes a function and captures thrown errors; no function to invoke in JSON.
- before
- Not ported. Returns a function invoked at most N times; not a Value.
- before_
x - Not ported. Returns a function invoked at most N times; not a Value.
- bind
- Not ported. Binds a function to a
this/arguments; functions are not Values. - bind_
all - Not ported. Binds object methods in place; JSON objects have no methods.
- bind_
all_ x - Not ported. Binds object methods in place; JSON objects have no methods.
- bind_
key - Not ported. Binds an object method by key; JSON objects have no methods.
- bind_
key_ x - Not ported. Binds an object method by key; JSON objects have no methods.
- bind_x
- Not ported. Binds a function to a
this/arguments; functions are not Values. - camel_
case - See lodash camelCase
- camel_
case_ x _xhelper for camel_case!: returns a primitive value instead of aValue.- capitalize
- See lodash capitalize
- capitalize_
x _xhelper for capitalize!: returns a primitive value instead of aValue.- cast_
array - See lodash castArray
- cast_
array_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use cast_array! and read the returnedValue. - ceil
- See lodash ceil
- ceil_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use ceil! and read the returnedValue. - chain
- Not ported. Wraps a value to enable explicit method chaining; this crate has no chaining wrapper (call the functions directly instead).
- chain_x
- Not ported. Wraps a value to enable explicit method chaining; this crate has no chaining wrapper (call the functions directly instead).
- chunk
- See lodash chunk
- chunk_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use chunk! and read the returnedValue. - clamp
- See lodash clamp
- clamp_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use clamp! and read the returnedValue. - clone
- See lodash clone
- clone_
deep - See lodash cloneDeep
- clone_
deep_ with - See lodash cloneDeepWith
- clone_
deep_ with_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use clone_deep_with! and read the returnedValue. - clone_
deep_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use clone_deep! and read the returnedValue. - clone_
with - See lodash cloneWith
- clone_
with_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use clone_with! and read the returnedValue. - clone_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use clone! and read the returnedValue. - compact
- See lodash compact
- compact_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use compact! and read the returnedValue. - concat
- See lodash concat
- concat_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use concat! and read the returnedValue. - cond
- Not ported. Returns a function chosen from predicate/function pairs; not a Value.
- cond_x
- Not ported. Returns a function chosen from predicate/function pairs; not a Value.
- conforms
- Not ported. Returns a predicate function from a spec; not a Value.
- conforms_
to - See lodash conformsTo
- conforms_
to_ x _xhelper for conforms_to!: returns a primitive value instead of aValue.- conforms_
x - Not ported. Returns a predicate function from a spec; not a Value.
- constant
- Not ported. Returns a function that returns a constant; not a Value.
- constant_
x - Not ported. Returns a function that returns a constant; not a Value.
- count_
by - See lodash countBy
- count_
by_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use count_by! and read the returnedValue. - create
- Not ported. Creates an object with a given prototype; JSON has no prototype chain.
- create_
x - Not ported. Creates an object with a given prototype; JSON has no prototype chain.
- curry
- Not ported. Curries a function; operates on a function, not a Value.
- curry_
right - Not ported. Curries a function from the right; not a Value.
- curry_
right_ x - Not ported. Curries a function from the right; not a Value.
- curry_x
- Not ported. Curries a function; operates on a function, not a Value.
- debounce
- Not ported. Wraps a function with debouncing; time/closures are not Values.
- debounce_
x - Not ported. Wraps a function with debouncing; time/closures are not Values.
- deburr
- See lodash deburr
- deburr_
x _xhelper for deburr!: returns a primitive value instead of aValue.- default_
to - See lodash defaultTo
- default_
to_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use default_to! and read the returnedValue. - defaults
- See lodash defaults
- defaults_
deep - See lodash defaultsDeep
- defaults_
deep_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use defaults_deep! and read the returnedValue. - defaults_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use defaults! and read the returnedValue. - defer
- Not ported. Defers invoking a function; there is no function to invoke.
- defer_x
- Not ported. Defers invoking a function; there is no function to invoke.
- delay
- Not ported. Invokes a function after a delay; not a Value.
- delay_x
- Not ported. Invokes a function after a delay; not a Value.
- difference
- See lodash difference
- difference_
by - See lodash differenceBy
- difference_
by_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use difference_by! and read the returnedValue. - difference_
with - See lodash differenceWith
- difference_
with_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use difference_with! and read the returnedValue. - difference_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use difference! and read the returnedValue. - divide
- See lodash divide
- divide_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use divide! and read the returnedValue. - drop
- See lodash drop
- drop_
right - See lodash dropRight
- drop_
right_ while - See lodash dropRightWhile
- drop_
right_ while_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use drop_right_while! and read the returnedValue. - drop_
right_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use drop_right! and read the returnedValue. - drop_
while - See lodash dropWhile
- drop_
while_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use drop_while! and read the returnedValue. - drop_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use drop! and read the returnedValue. - each
- See lodash forEach
- each_
right - See lodash forEachRight
- each_
right_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use each_right! and read the returnedValue. - each_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use each! and read the returnedValue. - ends_
with - See lodash endsWith
- ends_
with_ x _xhelper for ends_with!: returns a primitive value instead of aValue.- eq
- See lodash eq
- eq_x
_xhelper for eq!: returns a primitive value instead of aValue.- escape
- See lodash escape
- escape_
reg_ exp - See lodash escapeRegExp
- escape_
reg_ exp_ x _xhelper for escape_reg_exp!: returns a primitive value instead of aValue.- escape_
x _xhelper for escape!: returns a primitive value instead of aValue.- every
- See lodash every
- every_x
_xhelper for every!: returns a primitive value instead of aValue.- fill
- See lodash fill
- fill_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use fill! and read the returnedValue. - filter
- See lodash filter
- filter_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use filter! and read the returnedValue. - find
- See lodash find
- find_
index - See lodash findIndex
- find_
index_ x _xhelper for find_index!: returns a primitive value instead of aValue.- find_
key - See lodash findKey
- find_
key_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use find_key! and read the returnedValue. - find_
last - See lodash findLast
- find_
last_ index - See lodash findLastIndex
- find_
last_ index_ x _xhelper for find_last_index!: returns a primitive value instead of aValue.- find_
last_ key - See lodash findLastKey
- find_
last_ key_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use find_last_key! and read the returnedValue. - find_
last_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use find_last! and read the returnedValue. - find_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use find! and read the returnedValue. - flat_
map - See lodash flatMap
- flat_
map_ deep - See lodash flatMapDeep
- flat_
map_ deep_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use flat_map_deep! and read the returnedValue. - flat_
map_ depth - See lodash flatMapDepth
- flat_
map_ depth_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use flat_map_depth! and read the returnedValue. - flat_
map_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use flat_map! and read the returnedValue. - flatten
- See lodash flatten
- flatten_
deep - See lodash flattenDeep
- flatten_
deep_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use flatten_deep! and read the returnedValue. - flatten_
depth - See lodash flattenDepth
- flatten_
depth_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use flatten_depth! and read the returnedValue. - flatten_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use flatten! and read the returnedValue. - flip
- Not ported. Returns a function with reversed arguments; not a Value.
- flip_x
- Not ported. Returns a function with reversed arguments; not a Value.
- floor
- See lodash floor
- floor_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use floor! and read the returnedValue. - flow
- Not ported. Composes functions left-to-right; not a Value.
- flow_
right - Not ported. Composes functions right-to-left; not a Value.
- flow_
right_ x - Not ported. Composes functions right-to-left; not a Value.
- flow_x
- Not ported. Composes functions left-to-right; not a Value.
- for_own
- See lodash forOwn
- for_
own_ right - See lodash forOwnRight
- for_
own_ right_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use for_own_right! and read the returnedValue. - for_
own_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use for_own! and read the returnedValue. - from_
pairs - See lodash fromPairs
- from_
pairs_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use from_pairs! and read the returnedValue. - functions
- See lodash functions
- functions_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use functions! and read the returnedValue. - get
- See lodash get
- get_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use get! and read the returnedValue. - group_
by - See lodash groupBy
- group_
by_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use group_by! and read the returnedValue. - gt
- See lodash gt
- gt_x
_xhelper for gt!: returns a primitive value instead of aValue.- gte
- See lodash gte
- gte_x
_xhelper for gte!: returns a primitive value instead of aValue.- has
- See lodash has
- has_x
_xhelper for has!: returns a primitive value instead of aValue.- head
- See lodash head
- head_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use head! and read the returnedValue. - identity
- See lodash identity
- identity_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use identity! and read the returnedValue. - in_
range - See lodash inRange
- in_
range_ x _xhelper for in_range!: returns a primitive value instead of aValue.- includes
- See lodash includes
- includes_
x _xhelper for includes!: returns a primitive value instead of aValue.- index_
of - See lodash indexOf
- index_
of_ x _xhelper for index_of!: returns a primitive value instead of aValue.- initial
- See lodash initial
- initial_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use initial! and read the returnedValue. - intersection
- See lodash intersection
- intersection_
by - See lodash intersectionBy
- intersection_
by_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use intersection_by! and read the returnedValue. - intersection_
with - See lodash intersectionWith
- intersection_
with_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use intersection_with! and read the returnedValue. - intersection_
x _xhelper for intersection!: returns a primitive value instead of aValue.- invert
- See lodash invert
- invert_
by - See lodash invertBy
- invert_
by_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use invert_by! and read the returnedValue. - invert_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use invert! and read the returnedValue. - invoke
- Not ported. Invokes the method at
path; JSON values have no methods. - invoke_
map - Not ported. Invokes a named method on each element; JSON values have no methods.
- invoke_
map_ x - Not ported. Invokes a named method on each element; JSON values have no methods.
- invoke_
x - Not ported. Invokes the method at
path; JSON values have no methods. - is_
arguments - See lodash isArguments
- is_
arguments_ x _xhelper for is_arguments!: returns a primitive value instead of aValue.- is_
array - See lodash isArray
- is_
array_ buffer - See lodash isArrayBuffer
- is_
array_ buffer_ x _xhelper for is_array_buffer!: returns a primitive value instead of aValue.- is_
array_ like - See lodash isArrayLike
- is_
array_ like_ object - See lodash isArrayLikeObject
- is_
array_ like_ object_ x _xhelper for is_array_like_object!: returns a primitive value instead of aValue.- is_
array_ like_ x _xhelper for is_array_like!: returns a primitive value instead of aValue.- is_
array_ x _xhelper for is_array!: returns a primitive value instead of aValue.- is_
boolean - See lodash isBoolean
- is_
boolean_ x _xhelper for is_boolean!: returns a primitive value instead of aValue.- is_
buffer - See lodash isBuffer
- is_
buffer_ x _xhelper for is_buffer!: returns a primitive value instead of aValue.- is_date
- See lodash isDate
- is_
date_ x _xhelper for is_date!: returns a primitive value instead of aValue.- is_
element - See lodash isElement
- is_
element_ x _xhelper for is_element!: returns a primitive value instead of aValue.- is_
empty - See lodash isEmpty
- is_
empty_ x _xhelper for is_empty!: returns a primitive value instead of aValue.- is_
equal - See lodash isEqual
- is_
equal_ with - See lodash isEqualWith
- is_
equal_ with_ x _xhelper for is_equal_with!: returns a primitive value instead of aValue.- is_
equal_ x _xhelper for is_equal!: returns a primitive value instead of aValue.- is_
error - See lodash isError
- is_
error_ x _xhelper for is_error!: returns a primitive value instead of aValue.- is_
finite - See lodash isFinite
- is_
finite_ x _xhelper for is_finite!: returns a primitive value instead of aValue.- is_
function - See lodash isFunction
- is_
function_ x _xhelper for is_function!: returns a primitive value instead of aValue.- is_
integer - See lodash isInteger
- is_
integer_ x _xhelper for is_integer!: returns a primitive value instead of aValue.- is_
length - See lodash isLength
- is_
length_ x _xhelper for is_length!: returns a primitive value instead of aValue.- is_map
- See lodash isMap
- is_
map_ x _xhelper for is_map!: returns a primitive value instead of aValue.- is_
match - See lodash isMatch
- is_
match_ with - See lodash isMatchWith
- is_
match_ with_ x _xhelper for is_match_with!: returns a primitive value instead of aValue.- is_
match_ x _xhelper for is_match!: returns a primitive value instead of aValue.- is_nan
- See lodash isNaN
- is_
nan_ x _xhelper for is_nan!: returns a primitive value instead of aValue.- is_
native - See lodash isNative
- is_
native_ x _xhelper for is_native!: returns a primitive value instead of aValue.- is_nil
- See lodash isNil
- is_
nil_ x _xhelper for is_nil!: returns a primitive value instead of aValue.- is_null
- See lodash isNull
- is_
null_ x _xhelper for is_null!: returns a primitive value instead of aValue.- is_
number - See lodash isNumber
- is_
number_ x _xhelper for is_number!: returns a primitive value instead of aValue.- is_
object - See lodash isObject
- is_
object_ like - See lodash isObjectLike
- is_
object_ like_ x _xhelper for is_object_like!: returns a primitive value instead of aValue.- is_
object_ x _xhelper for is_object!: returns a primitive value instead of aValue.- is_
plain_ object - See lodash isPlainObject
- is_
plain_ object_ x _xhelper for is_plain_object!: returns a primitive value instead of aValue.- is_
reg_ exp - See lodash isRegExp
- is_
reg_ exp_ x _xhelper for is_reg_exp!: returns a primitive value instead of aValue.- is_
safe_ integer - See lodash isSafeInteger
- is_
safe_ integer_ x _xhelper for is_safe_integer!: returns a primitive value instead of aValue.- is_set
- See lodash isSet
- is_
set_ x _xhelper for is_set!: returns a primitive value instead of aValue.- is_
string - See lodash isString
- is_
string_ x _xhelper for is_string!: returns a primitive value instead of aValue.- is_
symbol - See lodash isSymbol
- is_
symbol_ x _xhelper for is_symbol!: returns a primitive value instead of aValue.- is_
typed_ array - See lodash isTypedArray
- is_
typed_ array_ x _xhelper for is_typed_array!: returns a primitive value instead of aValue.- is_
undefined - See lodash isUndefined
- is_
undefined_ x _xhelper for is_undefined!: returns a primitive value instead of aValue.- is_
weak_ map - See lodash isWeakMap
- is_
weak_ map_ x _xhelper for is_weak_map!: returns a primitive value instead of aValue.- is_
weak_ set - See lodash isWeakSet
- is_
weak_ set_ x _xhelper for is_weak_set!: returns a primitive value instead of aValue.- iteratee
- See lodash iteratee
- iteratee_
x - Not provided. The result is a function, which has no primitive form; use iteratee! and call the returned closure.
- join
- See lodash join
- join_x
_xhelper for join!: returns a primitive value instead of aValue.- kebab_
case - See lodash kebabCase
- kebab_
case_ x _xhelper for kebab_case!: returns a primitive value instead of aValue.- key_by
- See lodash keyBy
- key_
by_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use key_by! and read the returnedValue. - keys
- See lodash keys
- keys_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use keys! and read the returnedValue. - last
- See lodash last
- last_
index_ of - See lodash lastIndexOf
- last_
index_ of_ x _xhelper for last_index_of!: returns a primitive value instead of aValue.- last_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use last! and read the returnedValue. - lower_
case - See lodash lowerCase
- lower_
case_ x _xhelper for lower_case!: returns a primitive value instead of aValue.- lower_
first - See lodash lowerFirst
- lower_
first_ x _xhelper for lower_first!: returns a primitive value instead of aValue.- lt
- See lodash lt
- lt_x
_xhelper for lt!: returns a primitive value instead of aValue.- lte
- See lodash lte
- lte_x
_xhelper for lte!: returns a primitive value instead of aValue.- map
- See lodash map
- map_
keys - See lodash mapKeys
- map_
keys_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use map_keys! and read the returnedValue. - map_
values - See lodash mapValues
- map_
values_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use map_values! and read the returnedValue. - map_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use map! and read the returnedValue. - matches
- See lodash matches
- matches_
property - See lodash matchesProperty
- matches_
property_ x - Not provided. The result is a predicate function, which has no primitive form; use matches_property! and call the returned closure.
- matches_
x - Not provided. The result is a predicate function, which has no primitive form; use matches! and call the returned closure.
- max
- See lodash max
- max_by
- See lodash maxBy
- max_
by_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use max_by! and read the returnedValue. - max_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use max! and read the returnedValue. - mean
- See lodash mean
- mean_by
- See lodash meanBy
- mean_
by_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use mean_by! and read the returnedValue. - mean_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use mean! and read the returnedValue. - memoize
- Not ported. Memoizes a function; operates on a function, not a Value.
- memoize_
x - Not ported. Memoizes a function; operates on a function, not a Value.
- merge
- See lodash merge
- merge_
with - See lodash mergeWith
- merge_
with_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use merge_with! and read the returnedValue. - merge_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use merge! and read the returnedValue. - method
- Not ported. Returns a function that invokes a method at a path; not a Value.
- method_
of - Not ported. Returns a function that invokes a method of an object; not a Value.
- method_
of_ x - Not ported. Returns a function that invokes a method of an object; not a Value.
- method_
x - Not ported. Returns a function that invokes a method at a path; not a Value.
- min
- See lodash min
- min_by
- See lodash minBy
- min_
by_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use min_by! and read the returnedValue. - min_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use min! and read the returnedValue. - mixin
- Not ported. Adds functions to an object/lodash; JSON objects hold no functions.
- mixin_x
- Not ported. Adds functions to an object/lodash; JSON objects hold no functions.
- multiply
- See lodash multiply
- multiply_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use multiply! and read the returnedValue. - negate
- Not ported. Returns a negated predicate function; not a Value.
- negate_
x - Not ported. Returns a negated predicate function; not a Value.
- no_
conflict - Not ported. Restores the global
_binding; not applicable to a Rust library. - no_
conflict_ x - Not ported. Restores the global
_binding; not applicable to a Rust library. - noop
- See lodash noop
- noop_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use noop! and read the returnedValue. - now
- See lodash now
- now_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use now! and read the returnedValue. - nth
- See lodash nth
- nth_arg
- Not ported. Returns a function selecting the nth argument; not a Value.
- nth_
arg_ x - Not ported. Returns a function selecting the nth argument; not a Value.
- nth_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use nth! and read the returnedValue. - omit
- See lodash omit
- omit_by
- See lodash omitBy
- omit_
by_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use omit_by! and read the returnedValue. - omit_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use omit! and read the returnedValue. - once
- Not ported. Returns a function callable once; not a Value.
- once_x
- Not ported. Returns a function callable once; not a Value.
- order_
by - See lodash orderBy
- order_
by_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use order_by! and read the returnedValue. - over
- Not ported. Returns a function invoking several iteratees; not a Value.
- over_
args - Not ported. Transforms a function’s arguments; not a Value.
- over_
args_ x - Not ported. Transforms a function’s arguments; not a Value.
- over_
every - Not ported. Returns a function AND-ing several predicates; not a Value.
- over_
every_ x - Not ported. Returns a function AND-ing several predicates; not a Value.
- over_
some - Not ported. Returns a function OR-ing several predicates; not a Value.
- over_
some_ x - Not ported. Returns a function OR-ing several predicates; not a Value.
- over_x
- Not ported. Returns a function invoking several iteratees; not a Value.
- pad
- See lodash pad
- pad_end
- See lodash padEnd
- pad_
end_ x _xhelper for pad_end!: returns a primitive value instead of aValue.- pad_
start - See lodash padStart
- pad_
start_ x _xhelper for pad_start!: returns a primitive value instead of aValue.- pad_x
_xhelper for pad!: returns a primitive value instead of aValue.- parse_
int - See lodash parseInt
- parse_
int_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use parse_int! and read the returnedValue. - partial
- Not ported. Partially applies a function; not a Value.
- partial_
right - Not ported. Partially applies from the right; not a Value.
- partial_
right_ x - Not ported. Partially applies from the right; not a Value.
- partial_
x - Not ported. Partially applies a function; not a Value.
- partition
- See lodash partition
- partition_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use partition! and read the returnedValue. - pick
- See lodash pick
- pick_by
- See lodash pickBy
- pick_
by_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use pick_by! and read the returnedValue. - pick_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use pick! and read the returnedValue. - property
- See lodash property
- property_
of - Not ported. Returns a getter function bound to an object; not a Value.
- property_
of_ x - Not ported. Returns a getter function bound to an object; not a Value.
- property_
x - Not provided. The result is a getter function, which has no primitive form; use property! and call the returned closure.
- pull
- See lodash pull
- pull_
all - See lodash pullAll
- pull_
all_ by - See lodash pullAllBy
- pull_
all_ by_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use pull_all_by! and read the returnedValue. - pull_
all_ with - See lodash pullAllWith
- pull_
all_ with_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use pull_all_with! and read the returnedValue. - pull_
all_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use pull_all! and read the returnedValue. - pull_at
- See lodash pullAt
- pull_
at_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use pull_at! and read the returnedValue. - pull_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use pull! and read the returnedValue. - random
- See lodash random
- random_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use random! and read the returnedValue. - range
- See lodash range
- range_
right - See lodash rangeRight
- range_
right_ x _xhelper for range_right!: returns a primitive value instead of aValue.- range_x
_xhelper for range!: returns a primitive value instead of aValue.- rearg
- Not ported. Reorders a function’s arguments; not a Value.
- rearg_x
- Not ported. Reorders a function’s arguments; not a Value.
- reduce
- See lodash reduce
- reduce_
right - See lodash reduceRight
- reduce_
right_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use reduce_right! and read the returnedValue. - reduce_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use reduce! and read the returnedValue. - reject
- See lodash reject
- reject_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use reject! and read the returnedValue. - remove
- See lodash remove
- remove_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use remove! and read the returnedValue. - repeat
- See lodash repeat
- repeat_
x _xhelper for repeat!: returns a primitive value instead of aValue.- replace
- See lodash replace
- replace_
x _xhelper for replace!: returns a primitive value instead of aValue.- rest
- Not ported. Turns trailing arguments into an array parameter; not a Value.
- rest_x
- Not ported. Turns trailing arguments into an array parameter; not a Value.
- result
- See lodash result
- result_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use result! and read the returnedValue. - reverse
- See lodash reverse
- reverse_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use reverse! and read the returnedValue. - round
- See lodash round
- round_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use round! and read the returnedValue. - run_
in_ context - Not ported. Creates a lodash bound to a context; not applicable to a Rust library.
- run_
in_ context_ x - Not ported. Creates a lodash bound to a context; not applicable to a Rust library.
- sample
- See lodash sample
- sample_
size - See lodash sampleSize
- sample_
size_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use sample_size! and read the returnedValue. - sample_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use sample! and read the returnedValue. - set
- See lodash set
- set_
with - Not ported. Like
setbut with a customizer for creating intermediate objects; niche, not ported. - set_
with_ x - Not ported. Like
setbut with a customizer for creating intermediate objects; niche, not ported. - set_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use set! and read the returnedValue. - shuffle
- See lodash shuffle
- shuffle_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use shuffle! and read the returnedValue. - size
- See lodash size
- size_x
_xhelper for size!: returns a primitive value instead of aValue.- slice
- See lodash slice
- slice_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use slice! and read the returnedValue. - snake_
case - See lodash snakeCase
- snake_
case_ x _xhelper for snake_case!: returns a primitive value instead of aValue.- some
- See lodash some
- some_x
_xhelper for some!: returns a primitive value instead of aValue.- sort_by
- See lodash sortBy
- sort_
by_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use sort_by! and read the returnedValue. - sorted_
index - See lodash sortedIndex
- sorted_
index_ by - See lodash sortedIndexBy
- sorted_
index_ by_ x _xhelper for sorted_index_by!: returns a primitive value instead of aValue.- sorted_
index_ of - See lodash sortedIndexOf
- sorted_
index_ of_ x _xhelper for sorted_index_of!: returns a primitive value instead of aValue.- sorted_
index_ x _xhelper for sorted_index!: returns a primitive value instead of aValue.- sorted_
last_ index - See lodash sortedLastIndex
- sorted_
last_ index_ by - See lodash sortedLastIndexBy
- sorted_
last_ index_ by_ x _xhelper for sorted_last_index_by!: returns a primitive value instead of aValue.- sorted_
last_ index_ of - See lodash sortedLastIndexOf
- sorted_
last_ index_ of_ x _xhelper for sorted_last_index_of!: returns a primitive value instead of aValue.- sorted_
last_ index_ x _xhelper for sorted_last_index!: returns a primitive value instead of aValue.- sorted_
uniq - See lodash sortedUniq
- sorted_
uniq_ by - See lodash sortedUniqBy
- sorted_
uniq_ by_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use sorted_uniq_by! and read the returnedValue. - sorted_
uniq_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use sorted_uniq! and read the returnedValue. - split
- See lodash split
- split_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use split! and read the returnedValue. - spread
- Not ported. Spreads an array into a function’s arguments; not a Value.
- spread_
x - Not ported. Spreads an array into a function’s arguments; not a Value.
- start_
case - See lodash startCase
- start_
case_ x _xhelper for start_case!: returns a primitive value instead of aValue.- starts_
with - See lodash startsWith
- starts_
with_ x _xhelper for starts_with!: returns a primitive value instead of aValue.- stub_
array - See lodash stubArray
- stub_
array_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use stub_array! and read the returnedValue. - stub_
false - See lodash stubFalse
- stub_
false_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use stub_false! and read the returnedValue. - stub_
object - See lodash stubObject
- stub_
object_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use stub_object! and read the returnedValue. - stub_
string - See lodash stubString
- stub_
string_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use stub_string! and read the returnedValue. - stub_
true - See lodash stubTrue
- stub_
true_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use stub_true! and read the returnedValue. - subtract
- See lodash subtract
- subtract_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use subtract! and read the returnedValue. - sum
- See lodash sum
- sum_by
- See lodash sumBy
- sum_
by_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use sum_by! and read the returnedValue. - sum_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use sum! and read the returnedValue. - tail
- See lodash tail
- tail_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use tail! and read the returnedValue. - take
- See lodash take
- take_
right - See lodash takeRight
- take_
right_ while - See lodash takeRightWhile
- take_
right_ while_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use take_right_while! and read the returnedValue. - take_
right_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use take_right! and read the returnedValue. - take_
while - See lodash takeWhile
- take_
while_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use take_while! and read the returnedValue. - take_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use take! and read the returnedValue. - tap
- Not ported. Invokes an interceptor with the value then returns it; part of the unsupported chaining wrapper.
- tap_x
- Not ported. Invokes an interceptor with the value then returns it; part of the unsupported chaining wrapper.
- template
- Not ported. Compiles a string into a render function; requires a template engine, out of scope.
- template_
x - Not ported. Compiles a string into a render function; requires a template engine, out of scope.
- throttle
- Not ported. Wraps a function with throttling; not a Value.
- throttle_
x - Not ported. Wraps a function with throttling; not a Value.
- thru
- Not ported. Passes the value through an interceptor and returns its result; part of the unsupported chaining wrapper.
- thru_x
- Not ported. Passes the value through an interceptor and returns its result; part of the unsupported chaining wrapper.
- times
- See lodash times
- times_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use times! and read the returnedValue. - to_
array - See lodash toArray
- to_
array_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use to_array! and read the returnedValue. - to_
finite - See lodash toFinite
- to_
finite_ x _xhelper for to_finite!: returns a primitive value instead of aValue.- to_
integer - See lodash toInteger
- to_
integer_ x _xhelper for to_integer!: returns a primitive value instead of aValue.- to_
length - See lodash toLength
- to_
length_ x _xhelper for to_length!: returns a primitive value instead of aValue.- to_
lower - See lodash toLower
- to_
lower_ x _xhelper for to_lower!: returns a primitive value instead of aValue.- to_
number - See lodash toNumber
- to_
number_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use to_number! and read the returnedValue. - to_
pairs - See lodash toPairs
- to_
pairs_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use to_pairs! and read the returnedValue. - to_path
- See lodash toPath
- to_
path_ x _xhelper for to_path!: returns a primitive value instead of aValue.- to_
plain_ object - See lodash toPlainObject
- to_
plain_ object_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use to_plain_object! and read the returnedValue. - to_
safe_ integer - See lodash toSafeInteger
- to_
safe_ integer_ x _xhelper for to_safe_integer!: returns a primitive value instead of aValue.- to_
string - See lodash toString
- to_
string_ x _xhelper for to_string!: returns a primitive value instead of aValue.- to_
upper - See lodash toUpper
- to_
upper_ x _xhelper for to_upper!: returns a primitive value instead of aValue.- transform
- See lodash transform
- transform_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use transform! and read the returnedValue. - trim
- See lodash trim
- trim_
end - See lodash trimEnd
- trim_
end_ x _xhelper for trim_end!: returns a primitive value instead of aValue.- trim_
start - See lodash trimStart
- trim_
start_ x _xhelper for trim_start!: returns a primitive value instead of aValue.- trim_x
_xhelper for trim!: returns a primitive value instead of aValue.- truncate
- See lodash truncate
- truncate_
x _xhelper for truncate!: returns a primitive value instead of aValue.- unary
- Not ported. Caps a function to one argument; not a Value.
- unary_x
- Not ported. Caps a function to one argument; not a Value.
- unescape
- See lodash unescape
- unescape_
x _xhelper for unescape!: returns a primitive value instead of aValue.- union
- See lodash union
- union_
by - See lodash unionBy
- union_
by_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use union_by! and read the returnedValue. - union_
with - See lodash unionWith
- union_
with_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use union_with! and read the returnedValue. - union_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use union! and read the returnedValue. - uniq
- See lodash uniq
- uniq_by
- See lodash uniqBy
- uniq_
by_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use uniq_by! and read the returnedValue. - uniq_
with - See lodash uniqWith
- uniq_
with_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use uniq_with! and read the returnedValue. - uniq_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use uniq! and read the returnedValue. - unset
- See lodash unset
- unset_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use unset! and read the returnedValue. - unzip
- See lodash unzip
- unzip_
with - See lodash unzipWith
- unzip_
with_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use unzip_with! and read the returnedValue. - unzip_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use unzip! and read the returnedValue. - update
- See lodash update
- update_
with - Not ported. Like
updatebut with a customizer for creating intermediate objects; niche, not ported. - update_
with_ x - Not ported. Like
updatebut with a customizer for creating intermediate objects; niche, not ported. - update_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use update! and read the returnedValue. - upper_
case - See lodash upperCase
- upper_
case_ x _xhelper for upper_case!: returns a primitive value instead of aValue.- upper_
first - See lodash upperFirst
- upper_
first_ x _xhelper for upper_first!: returns a primitive value instead of aValue.- values
- See lodash values
- values_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use values! and read the returnedValue. - without
- See lodash without
- without_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use without! and read the returnedValue. - words
- See lodash words
- words_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use words! and read the returnedValue. - wrap
- Not ported. Wraps a value in a function; the result is a function, not a Value.
- wrap_x
- Not ported. Wraps a value in a function; the result is a function, not a Value.
- xor
- See lodash xor
- xor_by
- See lodash xorBy
- xor_
by_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use xor_by! and read the returnedValue. - xor_
with - See lodash xorWith
- xor_
with_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use xor_with! and read the returnedValue. - xor_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use xor! and read the returnedValue. - zip
- See lodash zip
- zip_
object - See lodash zipObject
- zip_
object_ deep - See lodash zipObjectDeep
- zip_
object_ deep_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use zip_object_deep! and read the returnedValue. - zip_
object_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use zip_object! and read the returnedValue. - zip_
with - See lodash zipWith
- zip_
with_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use zip_with! and read the returnedValue. - zip_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use zip! and read the returnedValue.
Constants§
Functions§
- add
- Fn form of add!; see it for the full docs
- add_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use add! and read the returnedValue. - after
- Not ported. Returns a function invoked only after N calls; a function is not a serde_json::Value.
- after_x
- Not ported. Returns a function invoked only after N calls; a function is not a serde_json::Value.
- ary
- Not ported. Caps a function’s argument count; operates on a function, not a Value.
- ary_x
- Not ported. Caps a function’s argument count; operates on a function, not a Value.
- assign
- Fn form of assign!; see it for the full docs
- assign_
with - Fn form of assign_with!; see it for the full docs
- assign_
with_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use assign_with! and read the returnedValue. - assign_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use assign! and read the returnedValue. - at
- Fn form of at!; see it for the full docs
- at_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use at! and read the returnedValue. - attempt
- Not ported. Invokes a function and captures thrown errors; no function to invoke in JSON.
- attempt_
x - Not ported. Invokes a function and captures thrown errors; no function to invoke in JSON.
- before
- Not ported. Returns a function invoked at most N times; not a Value.
- before_
x - Not ported. Returns a function invoked at most N times; not a Value.
- bind
- Not ported. Binds a function to a
this/arguments; functions are not Values. - bind_
all - Not ported. Binds object methods in place; JSON objects have no methods.
- bind_
all_ x - Not ported. Binds object methods in place; JSON objects have no methods.
- bind_
key - Not ported. Binds an object method by key; JSON objects have no methods.
- bind_
key_ x - Not ported. Binds an object method by key; JSON objects have no methods.
- bind_x
- Not ported. Binds a function to a
this/arguments; functions are not Values. - camel_
case - Fn form of camel_case!; see it for the full docs
- camel_
case_ x _xhelper for camel_case!: returns a primitive value instead of aValue.- capitalize
- Fn form of capitalize!; see it for the full docs
- capitalize_
x _xhelper for capitalize!: returns a primitive value instead of aValue.- cast_
array - Fn form of cast_array!; see it for the full docs
- cast_
array_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use cast_array! and read the returnedValue. - ceil
- Fn form of ceil!; see it for the full docs
- ceil_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use ceil! and read the returnedValue. - chain
- Not ported. Wraps a value to enable explicit method chaining; this crate has no chaining wrapper (call the functions directly instead).
- chain_x
- Not ported. Wraps a value to enable explicit method chaining; this crate has no chaining wrapper (call the functions directly instead).
- chunk
- Fn form of chunk!; see it for the full docs
- chunk_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use chunk! and read the returnedValue. - clamp
- Fn form of clamp!; see it for the full docs
- clamp_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use clamp! and read the returnedValue. - clone
- Fn form of clone!; see it for the full docs
- clone_
deep - Fn form of clone_deep!; see it for the full docs
- clone_
deep_ with - Fn form of clone_deep_with!; see it for the full docs
- clone_
deep_ with_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use clone_deep_with! and read the returnedValue. - clone_
deep_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use clone_deep! and read the returnedValue. - clone_
with - Fn form of clone_with!; see it for the full docs
- clone_
with_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use clone_with! and read the returnedValue. - clone_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use clone! and read the returnedValue. - compact
- Fn form of compact!; see it for the full docs
- compact_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use compact! and read the returnedValue. - concat
- Fn form of concat!; see it for the full docs
- concat_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use concat! and read the returnedValue. - cond
- Not ported. Returns a function chosen from predicate/function pairs; not a Value.
- cond_x
- Not ported. Returns a function chosen from predicate/function pairs; not a Value.
- conforms
- Not ported. Returns a predicate function from a spec; not a Value.
- conforms_
to - Fn form of conforms_to!; see it for the full docs
- conforms_
to_ x _xhelper for conforms_to!: returns a primitive value instead of aValue.- conforms_
x - Not ported. Returns a predicate function from a spec; not a Value.
- constant
- Not ported. Returns a function that returns a constant; not a Value.
- constant_
x - Not ported. Returns a function that returns a constant; not a Value.
- count_
by - Fn form of count_by!; see it for the full docs
- count_
by_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use count_by! and read the returnedValue. - create
- Not ported. Creates an object with a given prototype; JSON has no prototype chain.
- create_
x - Not ported. Creates an object with a given prototype; JSON has no prototype chain.
- curry
- Not ported. Curries a function; operates on a function, not a Value.
- curry_
right - Not ported. Curries a function from the right; not a Value.
- curry_
right_ x - Not ported. Curries a function from the right; not a Value.
- curry_x
- Not ported. Curries a function; operates on a function, not a Value.
- debounce
- Not ported. Wraps a function with debouncing; time/closures are not Values.
- debounce_
x - Not ported. Wraps a function with debouncing; time/closures are not Values.
- deburr
- Fn form of deburr!; see it for the full docs
- deburr_
x _xhelper for deburr!: returns a primitive value instead of aValue.- default_
to - Fn form of default_to!; see it for the full docs
- default_
to_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use default_to! and read the returnedValue. - defaults
- Fn form of defaults!; see it for the full docs
- defaults_
deep - Fn form of defaults_deep!; see it for the full docs
- defaults_
deep_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use defaults_deep! and read the returnedValue. - defaults_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use defaults! and read the returnedValue. - defer
- Not ported. Defers invoking a function; there is no function to invoke.
- defer_x
- Not ported. Defers invoking a function; there is no function to invoke.
- delay
- Not ported. Invokes a function after a delay; not a Value.
- delay_x
- Not ported. Invokes a function after a delay; not a Value.
- difference
- Fn form of difference!; see it for the full docs
- difference_
by - Fn form of difference_by!; see it for the full docs
- difference_
by_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use difference_by! and read the returnedValue. - difference_
with - Fn form of difference_with!; see it for the full docs
- difference_
with_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use difference_with! and read the returnedValue. - difference_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use difference! and read the returnedValue. - divide
- Fn form of divide!; see it for the full docs
- divide_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use divide! and read the returnedValue. - drop
- Fn form of drop!; see it for the full docs
- drop_
right - Fn form of drop_right!; see it for the full docs
- drop_
right_ while - Fn form of drop_right_while!; see it for the full docs
- drop_
right_ while_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use drop_right_while! and read the returnedValue. - drop_
right_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use drop_right! and read the returnedValue. - drop_
while - Fn form of drop_while!; see it for the full docs
- drop_
while_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use drop_while! and read the returnedValue. - drop_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use drop! and read the returnedValue. - each
- Fn form of each!; see it for the full docs
- each_
right - Fn form of each_right!; see it for the full docs
- each_
right_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use each_right! and read the returnedValue. - each_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use each! and read the returnedValue. - ends_
with - Fn form of ends_with!; see it for the full docs
- ends_
with_ x _xhelper for ends_with!: returns a primitive value instead of aValue.- eq
- Fn form of eq!; see it for the full docs
- eq_x
_xhelper for eq!: returns a primitive value instead of aValue.- escape
- Fn form of escape!; see it for the full docs
- escape_
reg_ exp - Fn form of escape_reg_exp!; see it for the full docs
- escape_
reg_ exp_ x _xhelper for escape_reg_exp!: returns a primitive value instead of aValue.- escape_
x _xhelper for escape!: returns a primitive value instead of aValue.- every
- Fn form of every!; see it for the full docs
- every_x
_xhelper for every!: returns a primitive value instead of aValue.- fill
- Fn form of fill!; see it for the full docs
- fill_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use fill! and read the returnedValue. - filter
- Fn form of filter!; see it for the full docs
- filter_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use filter! and read the returnedValue. - find
- Fn form of find!; see it for the full docs
- find_
index - Fn form of find_index!; see it for the full docs
- find_
index_ x _xhelper for find_index!: returns a primitive value instead of aValue.- find_
key - Fn form of find_key!; see it for the full docs
- find_
key_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use find_key! and read the returnedValue. - find_
last - Fn form of find_last!; see it for the full docs
- find_
last_ index - Fn form of find_last_index!; see it for the full docs
- find_
last_ index_ x _xhelper for find_last_index!: returns a primitive value instead of aValue.- find_
last_ key - Fn form of find_last_key!; see it for the full docs
- find_
last_ key_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use find_last_key! and read the returnedValue. - find_
last_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use find_last! and read the returnedValue. - find_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use find! and read the returnedValue. - flat_
map - Fn form of flat_map!; see it for the full docs
- flat_
map_ deep - Fn form of flat_map_deep!; see it for the full docs
- flat_
map_ deep_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use flat_map_deep! and read the returnedValue. - flat_
map_ depth - Fn form of flat_map_depth!; see it for the full docs
- flat_
map_ depth_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use flat_map_depth! and read the returnedValue. - flat_
map_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use flat_map! and read the returnedValue. - flatten
- Fn form of flatten!; see it for the full docs
- flatten_
deep - Fn form of flatten_deep!; see it for the full docs
- flatten_
deep_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use flatten_deep! and read the returnedValue. - flatten_
depth - Fn form of flatten_depth!; see it for the full docs
- flatten_
depth_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use flatten_depth! and read the returnedValue. - flatten_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use flatten! and read the returnedValue. - flip
- Not ported. Returns a function with reversed arguments; not a Value.
- flip_x
- Not ported. Returns a function with reversed arguments; not a Value.
- floor
- Fn form of floor!; see it for the full docs
- floor_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use floor! and read the returnedValue. - flow
- Not ported. Composes functions left-to-right; not a Value.
- flow_
right - Not ported. Composes functions right-to-left; not a Value.
- flow_
right_ x - Not ported. Composes functions right-to-left; not a Value.
- flow_x
- Not ported. Composes functions left-to-right; not a Value.
- for_own
- Fn form of for_own!; see it for the full docs
- for_
own_ right - Fn form of for_own_right!; see it for the full docs
- for_
own_ right_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use for_own_right! and read the returnedValue. - for_
own_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use for_own! and read the returnedValue. - from_
pairs - Fn form of from_pairs!; see it for the full docs
- from_
pairs_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use from_pairs! and read the returnedValue. - functions
- Fn form of functions!; see it for the full docs
- functions_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use functions! and read the returnedValue. - get
- Fn form of get!; see it for the full docs
- get_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use get! and read the returnedValue. - group_
by - Fn form of group_by!; see it for the full docs
- group_
by_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use group_by! and read the returnedValue. - gt
- Fn form of gt!; see it for the full docs
- gt_x
_xhelper for gt!: returns a primitive value instead of aValue.- gte
- Fn form of gte!; see it for the full docs
- gte_x
_xhelper for gte!: returns a primitive value instead of aValue.- has
- Fn form of has!; see it for the full docs
- has_x
_xhelper for has!: returns a primitive value instead of aValue.- head
- Fn form of head!; see it for the full docs
- head_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use head! and read the returnedValue. - identity
- Fn form of identity!; see it for the full docs
- identity_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use identity! and read the returnedValue. - in_
range - Fn form of in_range!; see it for the full docs
- in_
range_ x _xhelper for in_range!: returns a primitive value instead of aValue.- includes
- Fn form of includes!; see it for the full docs
- includes_
x _xhelper for includes!: returns a primitive value instead of aValue.- index_
of - Fn form of index_of!; see it for the full docs
- index_
of_ x _xhelper for index_of!: returns a primitive value instead of aValue.- initial
- Fn form of initial!; see it for the full docs
- initial_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use initial! and read the returnedValue. - intersection
- Fn form of intersection!; see it for the full docs
- intersection_
by - Fn form of intersection_by!; see it for the full docs
- intersection_
by_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use intersection_by! and read the returnedValue. - intersection_
with - Fn form of intersection_with!; see it for the full docs
- intersection_
with_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use intersection_with! and read the returnedValue. - intersection_
x _xhelper for intersection!: returns a primitive value instead of aValue.- invert
- Fn form of invert!; see it for the full docs
- invert_
by - Fn form of invert_by!; see it for the full docs
- invert_
by_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use invert_by! and read the returnedValue. - invert_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use invert! and read the returnedValue. - invoke
- Not ported. Invokes the method at
path; JSON values have no methods. - invoke_
map - Not ported. Invokes a named method on each element; JSON values have no methods.
- invoke_
map_ x - Not ported. Invokes a named method on each element; JSON values have no methods.
- invoke_
x - Not ported. Invokes the method at
path; JSON values have no methods. - is_
arguments - Fn form of is_arguments!; see it for the full docs
- is_
arguments_ x _xhelper for is_arguments!: returns a primitive value instead of aValue.- is_
array - Fn form of is_array!; see it for the full docs
- is_
array_ buffer - Fn form of is_array_buffer!; see it for the full docs
- is_
array_ buffer_ x _xhelper for is_array_buffer!: returns a primitive value instead of aValue.- is_
array_ like - Fn form of is_array_like!; see it for the full docs
- is_
array_ like_ object - Fn form of is_array_like_object!; see it for the full docs
- is_
array_ like_ object_ x _xhelper for is_array_like_object!: returns a primitive value instead of aValue.- is_
array_ like_ x _xhelper for is_array_like!: returns a primitive value instead of aValue.- is_
array_ x _xhelper for is_array!: returns a primitive value instead of aValue.- is_
boolean - Fn form of is_boolean!; see it for the full docs
- is_
boolean_ x _xhelper for is_boolean!: returns a primitive value instead of aValue.- is_
buffer - Fn form of is_buffer!; see it for the full docs
- is_
buffer_ x _xhelper for is_buffer!: returns a primitive value instead of aValue.- is_date
- Fn form of is_date!; see it for the full docs
- is_
date_ x _xhelper for is_date!: returns a primitive value instead of aValue.- is_
element - Fn form of is_element!; see it for the full docs
- is_
element_ x _xhelper for is_element!: returns a primitive value instead of aValue.- is_
empty - Fn form of is_empty!; see it for the full docs
- is_
empty_ x _xhelper for is_empty!: returns a primitive value instead of aValue.- is_
equal - Fn form of is_equal!; see it for the full docs
- is_
equal_ with - Fn form of is_equal_with!; see it for the full docs
- is_
equal_ with_ x _xhelper for is_equal_with!: returns a primitive value instead of aValue.- is_
equal_ x _xhelper for is_equal!: returns a primitive value instead of aValue.- is_
error - Fn form of is_error!; see it for the full docs
- is_
error_ x _xhelper for is_error!: returns a primitive value instead of aValue.- is_
finite - Fn form of is_finite!; see it for the full docs
- is_
finite_ x _xhelper for is_finite!: returns a primitive value instead of aValue.- is_
function - Fn form of is_function!; see it for the full docs
- is_
function_ x _xhelper for is_function!: returns a primitive value instead of aValue.- is_
integer - Fn form of is_integer!; see it for the full docs
- is_
integer_ x _xhelper for is_integer!: returns a primitive value instead of aValue.- is_
length - Fn form of is_length!; see it for the full docs
- is_
length_ x _xhelper for is_length!: returns a primitive value instead of aValue.- is_map
- Fn form of is_map!; see it for the full docs
- is_
map_ x _xhelper for is_map!: returns a primitive value instead of aValue.- is_
match - Fn form of is_match!; see it for the full docs
- is_
match_ with - Fn form of is_match_with!; see it for the full docs
- is_
match_ with_ x _xhelper for is_match_with!: returns a primitive value instead of aValue.- is_
match_ x _xhelper for is_match!: returns a primitive value instead of aValue.- is_nan
- Fn form of is_nan!; see it for the full docs
- is_
nan_ x _xhelper for is_nan!: returns a primitive value instead of aValue.- is_
native - Fn form of is_native!; see it for the full docs
- is_
native_ x _xhelper for is_native!: returns a primitive value instead of aValue.- is_nil
- Fn form of is_nil!; see it for the full docs
- is_
nil_ x _xhelper for is_nil!: returns a primitive value instead of aValue.- is_null
- Fn form of is_null!; see it for the full docs
- is_
null_ x _xhelper for is_null!: returns a primitive value instead of aValue.- is_
number - Fn form of is_number!; see it for the full docs
- is_
number_ x _xhelper for is_number!: returns a primitive value instead of aValue.- is_
object - Fn form of is_object!; see it for the full docs
- is_
object_ like - Fn form of is_object_like!; see it for the full docs
- is_
object_ like_ x _xhelper for is_object_like!: returns a primitive value instead of aValue.- is_
object_ x _xhelper for is_object!: returns a primitive value instead of aValue.- is_
plain_ object - Fn form of is_plain_object!; see it for the full docs
- is_
plain_ object_ x _xhelper for is_plain_object!: returns a primitive value instead of aValue.- is_
reg_ exp - Fn form of is_reg_exp!; see it for the full docs
- is_
reg_ exp_ x _xhelper for is_reg_exp!: returns a primitive value instead of aValue.- is_
safe_ integer - Fn form of is_safe_integer!; see it for the full docs
- is_
safe_ integer_ x _xhelper for is_safe_integer!: returns a primitive value instead of aValue.- is_set
- Fn form of is_set!; see it for the full docs
- is_
set_ x _xhelper for is_set!: returns a primitive value instead of aValue.- is_
string - Fn form of is_string!; see it for the full docs
- is_
string_ x _xhelper for is_string!: returns a primitive value instead of aValue.- is_
symbol - Fn form of is_symbol!; see it for the full docs
- is_
symbol_ x _xhelper for is_symbol!: returns a primitive value instead of aValue.- is_
typed_ array - Fn form of is_typed_array!; see it for the full docs
- is_
typed_ array_ x _xhelper for is_typed_array!: returns a primitive value instead of aValue.- is_
undefined - Fn form of is_undefined!; see it for the full docs
- is_
undefined_ x _xhelper for is_undefined!: returns a primitive value instead of aValue.- is_
weak_ map - Fn form of is_weak_map!; see it for the full docs
- is_
weak_ map_ x _xhelper for is_weak_map!: returns a primitive value instead of aValue.- is_
weak_ set - Fn form of is_weak_set!; see it for the full docs
- is_
weak_ set_ x _xhelper for is_weak_set!: returns a primitive value instead of aValue.- iteratee
- Fn form of iteratee!; see it for the full docs
- iteratee_
x - Not provided. The result is a function, which has no primitive form; use iteratee! and call the returned closure.
- join
- Fn form of join!; see it for the full docs
- join_x
_xhelper for join!: returns a primitive value instead of aValue.- kebab_
case - Fn form of kebab_case!; see it for the full docs
- kebab_
case_ x _xhelper for kebab_case!: returns a primitive value instead of aValue.- key_by
- Fn form of key_by!; see it for the full docs
- key_
by_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use key_by! and read the returnedValue. - keys
- Fn form of keys!; see it for the full docs
- keys_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use keys! and read the returnedValue. - last
- Fn form of last!; see it for the full docs
- last_
index_ of - Fn form of last_index_of!; see it for the full docs
- last_
index_ of_ x _xhelper for last_index_of!: returns a primitive value instead of aValue.- last_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use last! and read the returnedValue. - lower_
case - Fn form of lower_case!; see it for the full docs
- lower_
case_ x _xhelper for lower_case!: returns a primitive value instead of aValue.- lower_
first - Fn form of lower_first!; see it for the full docs
- lower_
first_ x _xhelper for lower_first!: returns a primitive value instead of aValue.- lt
- Fn form of lt!; see it for the full docs
- lt_x
_xhelper for lt!: returns a primitive value instead of aValue.- lte
- Fn form of lte!; see it for the full docs
- lte_x
_xhelper for lte!: returns a primitive value instead of aValue.- map
- Fn form of map!; see it for the full docs
- map_
keys - Fn form of map_keys!; see it for the full docs
- map_
keys_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use map_keys! and read the returnedValue. - map_
values - Fn form of map_values!; see it for the full docs
- map_
values_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use map_values! and read the returnedValue. - map_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use map! and read the returnedValue. - matches
- Fn form of matches!; see it for the full docs
- matches_
property - Fn form of matches_property!; see it for the full docs
- matches_
property_ x - Not provided. The result is a predicate function, which has no primitive form; use matches_property! and call the returned closure.
- matches_
x - Not provided. The result is a predicate function, which has no primitive form; use matches! and call the returned closure.
- max
- Fn form of max!; see it for the full docs
- max_by
- Fn form of max_by!; see it for the full docs
- max_
by_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use max_by! and read the returnedValue. - max_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use max! and read the returnedValue. - mean
- Fn form of mean!; see it for the full docs
- mean_by
- Fn form of mean_by!; see it for the full docs
- mean_
by_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use mean_by! and read the returnedValue. - mean_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use mean! and read the returnedValue. - memoize
- Not ported. Memoizes a function; operates on a function, not a Value.
- memoize_
x - Not ported. Memoizes a function; operates on a function, not a Value.
- merge
- Fn form of merge!; see it for the full docs
- merge_
with - Fn form of merge_with!; see it for the full docs
- merge_
with_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use merge_with! and read the returnedValue. - merge_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use merge! and read the returnedValue. - method
- Not ported. Returns a function that invokes a method at a path; not a Value.
- method_
of - Not ported. Returns a function that invokes a method of an object; not a Value.
- method_
of_ x - Not ported. Returns a function that invokes a method of an object; not a Value.
- method_
x - Not ported. Returns a function that invokes a method at a path; not a Value.
- min
- Fn form of min!; see it for the full docs
- min_by
- Fn form of min_by!; see it for the full docs
- min_
by_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use min_by! and read the returnedValue. - min_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use min! and read the returnedValue. - mixin
- Not ported. Adds functions to an object/lodash; JSON objects hold no functions.
- mixin_x
- Not ported. Adds functions to an object/lodash; JSON objects hold no functions.
- multiply
- Fn form of multiply!; see it for the full docs
- multiply_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use multiply! and read the returnedValue. - negate
- Not ported. Returns a negated predicate function; not a Value.
- negate_
x - Not ported. Returns a negated predicate function; not a Value.
- no_
conflict - Not ported. Restores the global
_binding; not applicable to a Rust library. - no_
conflict_ x - Not ported. Restores the global
_binding; not applicable to a Rust library. - noop
- Fn form of noop!; see it for the full docs
- noop_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use noop! and read the returnedValue. - now
- Fn form of now!; see it for the full docs
- now_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use now! and read the returnedValue. - nth
- Fn form of nth!; see it for the full docs
- nth_arg
- Not ported. Returns a function selecting the nth argument; not a Value.
- nth_
arg_ x - Not ported. Returns a function selecting the nth argument; not a Value.
- nth_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use nth! and read the returnedValue. - omit
- Fn form of omit!; see it for the full docs
- omit_by
- Fn form of omit_by!; see it for the full docs
- omit_
by_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use omit_by! and read the returnedValue. - omit_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use omit! and read the returnedValue. - once
- Not ported. Returns a function callable once; not a Value.
- once_x
- Not ported. Returns a function callable once; not a Value.
- order_
by - Fn form of order_by!; see it for the full docs
- order_
by_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use order_by! and read the returnedValue. - over
- Not ported. Returns a function invoking several iteratees; not a Value.
- over_
args - Not ported. Transforms a function’s arguments; not a Value.
- over_
args_ x - Not ported. Transforms a function’s arguments; not a Value.
- over_
every - Not ported. Returns a function AND-ing several predicates; not a Value.
- over_
every_ x - Not ported. Returns a function AND-ing several predicates; not a Value.
- over_
some - Not ported. Returns a function OR-ing several predicates; not a Value.
- over_
some_ x - Not ported. Returns a function OR-ing several predicates; not a Value.
- over_x
- Not ported. Returns a function invoking several iteratees; not a Value.
- pad
- Fn form of pad!; see it for the full docs
- pad_end
- Fn form of pad_end!; see it for the full docs
- pad_
end_ x _xhelper for pad_end!: returns a primitive value instead of aValue.- pad_
start - Fn form of pad_start!; see it for the full docs
- pad_
start_ x _xhelper for pad_start!: returns a primitive value instead of aValue.- pad_x
_xhelper for pad!: returns a primitive value instead of aValue.- parse_
int - Fn form of parse_int!; see it for the full docs
- parse_
int_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use parse_int! and read the returnedValue. - partial
- Not ported. Partially applies a function; not a Value.
- partial_
right - Not ported. Partially applies from the right; not a Value.
- partial_
right_ x - Not ported. Partially applies from the right; not a Value.
- partial_
x - Not ported. Partially applies a function; not a Value.
- partition
- Fn form of partition!; see it for the full docs
- partition_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use partition! and read the returnedValue. - pick
- Fn form of pick!; see it for the full docs
- pick_by
- Fn form of pick_by!; see it for the full docs
- pick_
by_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use pick_by! and read the returnedValue. - pick_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use pick! and read the returnedValue. - property
- Fn form of property!; see it for the full docs
- property_
of - Not ported. Returns a getter function bound to an object; not a Value.
- property_
of_ x - Not ported. Returns a getter function bound to an object; not a Value.
- property_
x - Not provided. The result is a getter function, which has no primitive form; use property! and call the returned closure.
- pull
- Fn form of pull!; see it for the full docs
- pull_
all - Fn form of pull_all!; see it for the full docs
- pull_
all_ by - Fn form of pull_all_by!; see it for the full docs
- pull_
all_ by_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use pull_all_by! and read the returnedValue. - pull_
all_ with - Fn form of pull_all_with!; see it for the full docs
- pull_
all_ with_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use pull_all_with! and read the returnedValue. - pull_
all_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use pull_all! and read the returnedValue. - pull_at
- Fn form of pull_at!; see it for the full docs
- pull_
at_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use pull_at! and read the returnedValue. - pull_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use pull! and read the returnedValue. - random
- Fn form of random!; see it for the full docs
- random_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use random! and read the returnedValue. - range
- Fn form of range!; see it for the full docs
- range_
right - Fn form of range_right!; see it for the full docs
- range_
right_ x _xhelper for range_right!: returns a primitive value instead of aValue.- range_x
_xhelper for range!: returns a primitive value instead of aValue.- rearg
- Not ported. Reorders a function’s arguments; not a Value.
- rearg_x
- Not ported. Reorders a function’s arguments; not a Value.
- reduce
- Fn form of reduce!; see it for the full docs
- reduce_
right - Fn form of reduce_right!; see it for the full docs
- reduce_
right_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use reduce_right! and read the returnedValue. - reduce_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use reduce! and read the returnedValue. - reject
- Fn form of reject!; see it for the full docs
- reject_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use reject! and read the returnedValue. - remove
- Fn form of remove!; see it for the full docs
- remove_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use remove! and read the returnedValue. - repeat
- Fn form of repeat!; see it for the full docs
- repeat_
x _xhelper for repeat!: returns a primitive value instead of aValue.- replace
- Fn form of replace!; see it for the full docs
- replace_
x _xhelper for replace!: returns a primitive value instead of aValue.- rest
- Not ported. Turns trailing arguments into an array parameter; not a Value.
- rest_x
- Not ported. Turns trailing arguments into an array parameter; not a Value.
- result
- Fn form of result!; see it for the full docs
- result_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use result! and read the returnedValue. - reverse
- Fn form of reverse!; see it for the full docs
- reverse_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use reverse! and read the returnedValue. - round
- Fn form of round!; see it for the full docs
- round_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use round! and read the returnedValue. - run_
in_ context - Not ported. Creates a lodash bound to a context; not applicable to a Rust library.
- run_
in_ context_ x - Not ported. Creates a lodash bound to a context; not applicable to a Rust library.
- sample
- Fn form of sample!; see it for the full docs
- sample_
size - Fn form of sample_size!; see it for the full docs
- sample_
size_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use sample_size! and read the returnedValue. - sample_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use sample! and read the returnedValue. - set
- Fn form of set!; see it for the full docs
- set_
with - Not ported. Like
setbut with a customizer for creating intermediate objects; niche, not ported. - set_
with_ x - Not ported. Like
setbut with a customizer for creating intermediate objects; niche, not ported. - set_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use set! and read the returnedValue. - shuffle
- Fn form of shuffle!; see it for the full docs
- shuffle_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use shuffle! and read the returnedValue. - size
- Fn form of size!; see it for the full docs
- size_x
_xhelper for size!: returns a primitive value instead of aValue.- slice
- Fn form of slice!; see it for the full docs
- slice_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use slice! and read the returnedValue. - snake_
case - Fn form of snake_case!; see it for the full docs
- snake_
case_ x _xhelper for snake_case!: returns a primitive value instead of aValue.- some
- Fn form of some!; see it for the full docs
- some_x
_xhelper for some!: returns a primitive value instead of aValue.- sort_by
- Fn form of sort_by!; see it for the full docs
- sort_
by_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use sort_by! and read the returnedValue. - sorted_
index - Fn form of sorted_index!; see it for the full docs
- sorted_
index_ by - Fn form of sorted_index_by!; see it for the full docs
- sorted_
index_ by_ x _xhelper for sorted_index_by!: returns a primitive value instead of aValue.- sorted_
index_ of - Fn form of sorted_index_of!; see it for the full docs
- sorted_
index_ of_ x _xhelper for sorted_index_of!: returns a primitive value instead of aValue.- sorted_
index_ x _xhelper for sorted_index!: returns a primitive value instead of aValue.- sorted_
last_ index - Fn form of sorted_last_index!; see it for the full docs
- sorted_
last_ index_ by - Fn form of sorted_last_index_by!; see it for the full docs
- sorted_
last_ index_ by_ x _xhelper for sorted_last_index_by!: returns a primitive value instead of aValue.- sorted_
last_ index_ of - Fn form of sorted_last_index_of!; see it for the full docs
- sorted_
last_ index_ of_ x _xhelper for sorted_last_index_of!: returns a primitive value instead of aValue.- sorted_
last_ index_ x _xhelper for sorted_last_index!: returns a primitive value instead of aValue.- sorted_
uniq - Fn form of sorted_uniq!; see it for the full docs
- sorted_
uniq_ by - Fn form of sorted_uniq_by!; see it for the full docs
- sorted_
uniq_ by_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use sorted_uniq_by! and read the returnedValue. - sorted_
uniq_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use sorted_uniq! and read the returnedValue. - split
- Fn form of split!; see it for the full docs
- split_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use split! and read the returnedValue. - spread
- Not ported. Spreads an array into a function’s arguments; not a Value.
- spread_
x - Not ported. Spreads an array into a function’s arguments; not a Value.
- start_
case - Fn form of start_case!; see it for the full docs
- start_
case_ x _xhelper for start_case!: returns a primitive value instead of aValue.- starts_
with - Fn form of starts_with!; see it for the full docs
- starts_
with_ x _xhelper for starts_with!: returns a primitive value instead of aValue.- stub_
array - Fn form of stub_array!; see it for the full docs
- stub_
array_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use stub_array! and read the returnedValue. - stub_
false - Fn form of stub_false!; see it for the full docs
- stub_
false_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use stub_false! and read the returnedValue. - stub_
object - Fn form of stub_object!; see it for the full docs
- stub_
object_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use stub_object! and read the returnedValue. - stub_
string - Fn form of stub_string!; see it for the full docs
- stub_
string_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use stub_string! and read the returnedValue. - stub_
true - Fn form of stub_true!; see it for the full docs
- stub_
true_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use stub_true! and read the returnedValue. - subtract
- Fn form of subtract!; see it for the full docs
- subtract_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use subtract! and read the returnedValue. - sum
- Fn form of sum!; see it for the full docs
- sum_by
- Fn form of sum_by!; see it for the full docs
- sum_
by_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use sum_by! and read the returnedValue. - sum_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use sum! and read the returnedValue. - tail
- Fn form of tail!; see it for the full docs
- tail_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use tail! and read the returnedValue. - take
- Fn form of take!; see it for the full docs
- take_
right - Fn form of take_right!; see it for the full docs
- take_
right_ while - Fn form of take_right_while!; see it for the full docs
- take_
right_ while_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use take_right_while! and read the returnedValue. - take_
right_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use take_right! and read the returnedValue. - take_
while - Fn form of take_while!; see it for the full docs
- take_
while_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use take_while! and read the returnedValue. - take_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use take! and read the returnedValue. - tap
- Not ported. Invokes an interceptor with the value then returns it; part of the unsupported chaining wrapper.
- tap_x
- Not ported. Invokes an interceptor with the value then returns it; part of the unsupported chaining wrapper.
- template
- Not ported. Compiles a string into a render function; requires a template engine, out of scope.
- template_
x - Not ported. Compiles a string into a render function; requires a template engine, out of scope.
- throttle
- Not ported. Wraps a function with throttling; not a Value.
- throttle_
x - Not ported. Wraps a function with throttling; not a Value.
- thru
- Not ported. Passes the value through an interceptor and returns its result; part of the unsupported chaining wrapper.
- thru_x
- Not ported. Passes the value through an interceptor and returns its result; part of the unsupported chaining wrapper.
- times
- Fn form of times!; see it for the full docs
- times_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use times! and read the returnedValue. - to_
array - Fn form of to_array!; see it for the full docs
- to_
array_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use to_array! and read the returnedValue. - to_
finite - Fn form of to_finite!; see it for the full docs
- to_
finite_ x _xhelper for to_finite!: returns a primitive value instead of aValue.- to_
integer - Fn form of to_integer!; see it for the full docs
- to_
integer_ x _xhelper for to_integer!: returns a primitive value instead of aValue.- to_
length - Fn form of to_length!; see it for the full docs
- to_
length_ x _xhelper for to_length!: returns a primitive value instead of aValue.- to_
lower - Fn form of to_lower!; see it for the full docs
- to_
lower_ x _xhelper for to_lower!: returns a primitive value instead of aValue.- to_
number - Fn form of to_number!; see it for the full docs
- to_
number_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use to_number! and read the returnedValue. - to_
pairs - Fn form of to_pairs!; see it for the full docs
- to_
pairs_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use to_pairs! and read the returnedValue. - to_path
- Fn form of to_path!; see it for the full docs
- to_
path_ x _xhelper for to_path!: returns a primitive value instead of aValue.- to_
plain_ object - Fn form of to_plain_object!; see it for the full docs
- to_
plain_ object_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use to_plain_object! and read the returnedValue. - to_
safe_ integer - Fn form of to_safe_integer!; see it for the full docs
- to_
safe_ integer_ x _xhelper for to_safe_integer!: returns a primitive value instead of aValue.- to_
string - Fn form of to_string!; see it for the full docs
- to_
string_ x _xhelper for to_string!: returns a primitive value instead of aValue.- to_
upper - Fn form of to_upper!; see it for the full docs
- to_
upper_ x _xhelper for to_upper!: returns a primitive value instead of aValue.- transform
- Fn form of transform!; see it for the full docs
- transform_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use transform! and read the returnedValue. - trim
- Fn form of trim!; see it for the full docs
- trim_
end - Fn form of trim_end!; see it for the full docs
- trim_
end_ x _xhelper for trim_end!: returns a primitive value instead of aValue.- trim_
start - Fn form of trim_start!; see it for the full docs
- trim_
start_ x _xhelper for trim_start!: returns a primitive value instead of aValue.- trim_x
_xhelper for trim!: returns a primitive value instead of aValue.- truncate
- Fn form of truncate!; see it for the full docs
- truncate_
x _xhelper for truncate!: returns a primitive value instead of aValue.- unary
- Not ported. Caps a function to one argument; not a Value.
- unary_x
- Not ported. Caps a function to one argument; not a Value.
- unescape
- Fn form of unescape!; see it for the full docs
- unescape_
x _xhelper for unescape!: returns a primitive value instead of aValue.- union
- Fn form of union!; see it for the full docs
- union_
by - Fn form of union_by!; see it for the full docs
- union_
by_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use union_by! and read the returnedValue. - union_
with - Fn form of union_with!; see it for the full docs
- union_
with_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use union_with! and read the returnedValue. - union_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use union! and read the returnedValue. - uniq
- Fn form of uniq!; see it for the full docs
- uniq_by
- Fn form of uniq_by!; see it for the full docs
- uniq_
by_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use uniq_by! and read the returnedValue. - uniq_
with - Fn form of uniq_with!; see it for the full docs
- uniq_
with_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use uniq_with! and read the returnedValue. - uniq_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use uniq! and read the returnedValue. - unset
- Fn form of unset!; see it for the full docs
- unset_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use unset! and read the returnedValue. - unzip
- Fn form of unzip!; see it for the full docs
- unzip_
with - Fn form of unzip_with!; see it for the full docs
- unzip_
with_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use unzip_with! and read the returnedValue. - unzip_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use unzip! and read the returnedValue. - update
- Fn form of update!; see it for the full docs
- update_
with - Not ported. Like
updatebut with a customizer for creating intermediate objects; niche, not ported. - update_
with_ x - Not ported. Like
updatebut with a customizer for creating intermediate objects; niche, not ported. - update_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use update! and read the returnedValue. - upper_
case - Fn form of upper_case!; see it for the full docs
- upper_
case_ x _xhelper for upper_case!: returns a primitive value instead of aValue.- upper_
first - Fn form of upper_first!; see it for the full docs
- upper_
first_ x _xhelper for upper_first!: returns a primitive value instead of aValue.- values
- Fn form of values!; see it for the full docs
- values_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use values! and read the returnedValue. - without
- Fn form of without!; see it for the full docs
- without_
x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use without! and read the returnedValue. - words
- Fn form of words!; see it for the full docs
- words_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use words! and read the returnedValue. - wrap
- Not ported. Wraps a value in a function; the result is a function, not a Value.
- wrap_x
- Not ported. Wraps a value in a function; the result is a function, not a Value.
- xor
- Fn form of xor!; see it for the full docs
- xor_by
- Fn form of xor_by!; see it for the full docs
- xor_
by_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use xor_by! and read the returnedValue. - xor_
with - Fn form of xor_with!; see it for the full docs
- xor_
with_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use xor_with! and read the returnedValue. - xor_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use xor! and read the returnedValue. - zip
- Fn form of zip!; see it for the full docs
- zip_
object - Fn form of zip_object!; see it for the full docs
- zip_
object_ deep - Fn form of zip_object_deep!; see it for the full docs
- zip_
object_ deep_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use zip_object_deep! and read the returnedValue. - zip_
object_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use zip_object! and read the returnedValue. - zip_
with - Fn form of zip_with!; see it for the full docs
- zip_
with_ x - Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use zip_with! and read the returnedValue. - zip_x
- Not provided. The result is a composite or runtime-dynamic
Valuewith no single primitive to downgrade to; use zip! and read the returnedValue.
Type Aliases§
- Conform
- A
(key, predicate)pair for conforms_to().