viva ~master (2021-03-16T19:32:06Z)
Home
Dub
Repo
Cache
viva
collections
cache
struct
Cache (
T
) {
Nullable
!
EntryValue
get
(string key);
EntryValue
[]
getAll
();
void
add
(string key, T value);
void
update
(string key, T value);
void
remove
(string key);
}
Members
Functions
add
void
add
(string key, T value)
get
Nullable
!
EntryValue
get
(string key)
getAll
EntryValue
[]
getAll
()
remove
void
remove
(string key)
update
void
update
(string key, T value)
Meta
Source
See Implementation
viva
collections
cache
structs
Cache