# Container
co = container(a = 1, 2, b = 3, 4)
at(co, 1:3)
at(co, "a", "b", 2)
try(at(co, "x")) # index 'x' not found
try(at(co, 1:10)) # index 5 exceeds length of Container
# Dict
d = dict(a = 1, b = 3)
at(d, 1:2)
at(d, "a", 2)
try(at(d, "x")) # index 'x' not found
try(at(d, 1:3)) # index 5 exceeds length of Dict
# dict.table
dit = dict.table(a = 1:3, b = 4:6)
at(dit, "a")
at(dit, 2)
at(dit, "a", 2)
try(at(dit, "x")) # index 'x' not found
try(at(dit, 1:3)) # index 3 exceeds length of dict.table
Run the code above in your browser using DataLab