Liking cljdoc? Tell your friends :D

dots.node.fs.stat-sync-fn


applycljs

(apply stat-sync-fn this-arg)
(apply stat-sync-fn this-arg arg-array)

Calls the function, substituting the specified object for the this value of the function, and the specified array for the arguments of the function.

Parameters:

  • this-arg: any - The object to be used as the this object.
  • arg-array: any - A set of arguments to be passed to the function.

Returns: any

Calls the function, substituting the specified object for the this value of the function, and the specified array for the arguments of the function.

**Parameters:**
- `this-arg`: `any` - The object to be used as the this object.
- `arg-array`: `any` - A set of arguments to be passed to the function.

**Returns:** `any`
sourceraw docstring

argumentscljs

(arguments stat-sync-fn)
source

bindcljs

(bind stat-sync-fn this-arg & arg-array)

For a given function, creates a bound function that has the same body as the original function. The this object of the bound function is associated with the specified object, and has the specified initial parameters.

Parameters:

  • this-arg: any - An object to which the this keyword can refer inside the new function.
  • arg-array: any[] - A list of arguments to be passed to the new function.

Returns: any

For a given function, creates a bound function that has the same body as the original function.
The this object of the bound function is associated with the specified object, and has the specified initial parameters.

**Parameters:**
- `this-arg`: `any` - An object to which the this keyword can refer inside the new function.
- `arg-array`: `any[]` - A list of arguments to be passed to the new function.

**Returns:** `any`
sourceraw docstring

callcljs

(call stat-sync-fn this-arg & arg-array)

Calls a method of an object, substituting another object for the current object.

Parameters:

  • this-arg: any - The object to be used as the current object.
  • arg-array: any[] - A list of arguments to be passed to the method.

Returns: any

Calls a method of an object, substituting another object for the current object.

**Parameters:**
- `this-arg`: `any` - The object to be used as the current object.
- `arg-array`: `any[]` - A list of arguments to be passed to the method.

**Returns:** `any`
sourceraw docstring

callercljs

(caller stat-sync-fn)
source

lengthcljs

(length stat-sync-fn)
source

namecljs

(name stat-sync-fn)

Returns the name of the function. Function names are read-only and can not be changed.

Returns the name of the function. Function names are read-only and can not be changed.
sourceraw docstring

prototypecljs

(prototype stat-sync-fn)
source

set-arguments!cljs

(set-arguments! stat-sync-fn value)
source

set-caller!cljs

(set-caller! stat-sync-fn value)
source

set-prototype!cljs

(set-prototype! stat-sync-fn value)
source

to-stringcljs

(to-string stat-sync-fn)

Returns a string representation of a function.

Returns: string

Returns a string representation of a function.

**Returns:** `string`
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close