subsetting_hashtables {r2r} | R Documentation |
Subsetting hashset
s and hashmap
s
Description
Subsetting operators `[[`
and `[`
for
hashset
s and hashmap
s provide an equivalent synthax for the
basic read/write operations performed by insert()
,
delete()
and query()
.
Usage
## S3 method for class 'r2r_hashmap'
x[[i]]
## S3 method for class 'r2r_hashmap'
x[i]
## S3 replacement method for class 'r2r_hashmap'
x[[i]] <- value
## S3 replacement method for class 'r2r_hashmap'
x[i] <- value
## S3 method for class 'r2r_hashset'
x[[i]]
## S3 method for class 'r2r_hashset'
x[i]
## S3 replacement method for class 'r2r_hashset'
x[[i]] <- value
## S3 replacement method for class 'r2r_hashset'
x[i] <- value
Arguments
x |
an |
i |
for |
value |
for |
Value
the replacement forms ([[<-
and [<-
) always return value
.
`[[`
returns TRUE
or FALSE
if
x
is an hashset
, an arbitrary R object if x
is an
hashmap
and i
is a valid key; when i
is not a key, the
behaviour for hashmap
s depends on the value of
on_missing_key(x)
.
The `[`
operator returns a list of the same length of i
, whose
k-th element is given by x[[ i[[k]] ]]
(the remark on missing keys for
hashmaps applies also here).
Author(s)
Valerio Gherardi