class
ObjectContents
Public types
-
using Iterator = collection::
Map<String, Json>::Iterator -
using ReverseIterator = collection::
Map<String, Json>::ReverseIterator -
using CIterator = collection::
Map<String, Json>::CIterator -
using CReverseIterator = collection::
Map<String, Json>::CReverseIterator
Constructors, destructors, conversion operators
Public functions
- auto operator[](const String& name) -> Json&
- auto operator[](const String& name) const -> const Json&
- void Add(const String& name, const Json& json)
- void Add(const String& name, Json&& json)
- void RemoveAt(const String& name)
- auto Size() const -> fsize noexcept
- auto begin() const -> CIterator
- auto end() const -> CIterator
- auto begin() -> Iterator
- auto end() -> Iterator
- auto rbegin() const -> CReverseIterator
- auto rend() const -> CReverseIterator
- auto rbegin() -> ReverseIterator
- auto rend() -> ReverseIterator
Public variables
Function documentation
bpf:: json:: Json:: Object:: Object()
Constructs an empty object
bpf:: json:: Json:: Object:: Object(const collection:: Map<String, Json>& map) explicit
Parameters | |
---|---|
map | the map to construct from |
Constructs an Object from an existing Map
bpf:: json:: Json:: Object:: Object(collection:: Map<String, Json>&& map) explicit
Parameters | |
---|---|
map | the map to construct from |
Constructs an Object from an existing Map
Json& bpf:: json:: Json:: Object:: operator[](const String& name)
Parameters | |
---|---|
name | the property name |
Returns | mutable item |
Exceptions | |
IndexException | if key is not in this map |
Returns an element non-const mode
const Json& bpf:: json:: Json:: Object:: operator[](const String& name) const
Parameters | |
---|---|
name | the property name |
Returns | immutable item |
Exceptions | |
IndexException | if key is not in this map |
Returns an element const mode
CReverseIterator bpf:: json:: Json:: Object:: rbegin() const
Returns | new iterator |
---|
Returns a reverse iterator to the begining of the collection
CReverseIterator bpf:: json:: Json:: Object:: rend() const
Returns | new iterator |
---|
Returns a reverse iterator to the end of the collection
ReverseIterator bpf:: json:: Json:: Object:: rbegin()
Returns | new iterator |
---|
Returns a reverse iterator to the begining of the collection
ReverseIterator bpf:: json:: Json:: Object:: rend()
Returns | new iterator |
---|
Returns a reverse iterator to the end of the collection
Variable documentation
collection:: Map<String, Json> bpf:: json:: Json:: Object:: Properties
Object properties