Synchronous lstat(2) - Get file status. Does not dereference symbolic links.
Synchronous lstat(2) - Get file status. Does not dereference symbolic links.
(apply this-arg)
(apply 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`
(bind 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`
(call 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`
(name)
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.
(to-string)
Returns a string representation of a function.
Returns: string
Returns a string representation of a function. **Returns:** `string`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close