classdom::Storage

sys::Obj
  dom::Storage

@Js

Storage models a DOM Storage.

See pod doc for details.

clear

Source

Void clear()

Remove all items from storage. If store was empty, this method does nothing.

get

Source

@Operator
Obj? get(Str key)

Return Obj stored under this key, or null if key does not exist.

key

Source

Str? key(Int index)

Return the key value for this index. If the index is greater than or equal to size returns null.

remove

Source

Void remove(Str key)

Remove value for this key. If no value for this key exists, this method does nothing.

set

Source

@Operator
Void set(Str key, Obj val)

Store value under this key.

size

Source

Int size()

Return the number of items in storage.