extract {partialised}R Documentation

Extract or replace arguments for partialised functions

Description

Extract or replace arguments for partialised functions

Usage

## S3 method for class 'partialised'
x[i, ...]

## S3 replacement method for class 'partialised'
x[i] <- value

## S3 method for class 'partialised'
x[[i, ...]]

## S3 replacement method for class 'partialised'
x[[i]] <- value

## S3 method for class 'partialised'
x$i

## S3 replacement method for class 'partialised'
x$i <- value

Arguments

x

Partialised function.

i

Indices specifying arguments to extract or replace.

...

Additional arguments.

value

An object, the new value of the argument.

Value

[, [[ and $ return arguments.


[Package partialised version 0.1.1 Index]