Returns a key-value mapping of the lowest key higher than or equal to the specified key, or null if there is no such key.
a key
a key-value mapping of the lowest key higher than or equal to the specified key, or null if there is no such key
Returns the lowest key higher than or equal to the specified key, or null if there is no such key.
a key
the lowest key higher than or equal to the specified key, or null if there is no such key
Removes all of the mappings in this map.
this
Returns true if the specified key is in this map.
the key to be tested
true if the specified key is in this map
Returns true if the specified value is in this map.
comparator
context for the comparator
true if the specified value is in this map.
Returns a reverse-order view of this map.
reverse-order view of this map
Iterates over elements of this map, calling the iteratee for each element. The iteratee is bound to the thisArg and invoked with three arguments: value, key and this map. The iteratee may exit iteration early by explicitly returning false.
the function called per iteration
the this binding of the iteratee
this
Iterates elements of this map, calling the iteratee for each element, removing all elements the iteratee does not return true. The iteratee is bound to the thisArg and invoked with three arguments: value, key and this map.
the function called per iteration
the this binding of the iteratee
this
Returns the first field value which the specified predicate returns true, or null if there is no such field. The predicate is bound to the thisArg and invoked with three arguments: field value, field name and this map.
the function called per iteration
the this binding of the predicate
the first field value which the specified predicate returns true, or null if there is no such field.
Returns a key-value mapping of the lowest key in this map, or null if this map is empty.
a key-value mapping of the lowest key in this map, or null if this map is empty
Returns the lowest key in this map.
the lowest key in this map
Returns a key-value mapping of the highest key lower than or equal to the specified key, or null if there is no such key.
a key
a key-value mapping of the highest key lower than or equal to the specified key, or null if there is no such key
Returns the highest key lower than or equal to the specified key, or null if there is no such key.
a key
the highest key lower than or equal to the specified key, or null if there is no such key.
Sets to the specified JSON object.
JSON object to be set
this
Returns the value of the specified key. Returns null if this map does not contains the specified key.
the key of the value
the value of the specified key
Returns a view of the portion of this map whose keys are lower than (or equal to,
if inclusive is true) the specified key toKey
.
high endpoint of the keys in the view
true if the specified key toKey
is to be included in the view
a view of the specified portion of this map
Returns a key-value mapping of the lowest key higher than the specified key, or null if there is no such key.
a key
a key-value mapping of the lowest key higher than the specified key, or null if there is no such key
Returns the lowest key higher than the specified key, or null if there is no such key.
a key
the lowest key higher than the specified key, or null if there is no such key
Returns true if this map is empty.
true if this map is empty
Returns true if this is initialized.
true if this is initialized.
Returns true if this data is locked.
true if this data is locked
Returns true if this is non-null.
true if this is non-null.
Returns true if this is read-only.
true if this is read-only
Returns a key-value mapping of the highest key in this map, or null if this map is empty.
a key-value mapping of the highest key in this map, or null if this map is empty
Returns the highest key in this map.
the highest key in this map
Locks this data.
this
Returns a key-value mapping of the highest key lower than the specified key, or null if there is no such key.
a key
a key-value mapping of the highest key lower than the specified key, or null if there is no such key
Returns the highest key lower than the specified key, or null if there is no such key.
a key
the highest key lower than the specified key, or null if there is no such key.
Unregister the event handlers of the specified events.
off( "success" );
// Unregister all the handlers of the events with the namespace `sample`.
off( ".sample" );
// Unregister all the handlers of the `success` event with the namespace `sample`.
off( "success.sample" );
// Multiple event types
off( "success fail" );
space-separated event types
the event handler to be unregistered
this
Unregister the event handlers of the specified events.
off( "success" );
// Unregister all the handlers of the events with the namespace `sample`.
off( ".sample" );
// Unregister all the handlers of the `success` event with the namespace `sample`.
off( "success.sample" );
// Multiple event types
off( "success fail" );
event target
space-separated event types
the event handler to be unregistered
this
Unregisters the event handler for the unregistration events of the specified events.
onoff("eventname", handler);
space-separated event names
an event handler
this
Unregisters the event handlers for the registration events of the specified events.
offon("eventname", handler);
space-separated event types
an event handler
this
Registers the specified event handler for the specified events. When the handler is invoked, the this keyword is a reference to the this class. This method supports space-separated event types and namespces.
on( "success", function(){} );
// `success` event with a namespace `sample`
on( "success.sample", function(){} );
// Multiple namespaces
on( "success.ns1.ns2.ns3", function(){} );
// Multiple event types
on( "success fail", function(){} );
// Event target
on( eventTarget, "success", function(){} );
space-separated event types
the event handler to be registered
this
Registers the specified event handler for the specified events. When the handler is invoked, the this keyword is a reference to the this class. This method supports space-separated event types and namespces.
on( "success", function(){} );
// `success` event with a namespace `sample`
on( "success.sample", function(){} );
// Multiple namespaces
on( "success.ns1.ns2.ns3", function(){} );
// Multiple event types
on( "success fail", function(){} );
// Event target
on( eventTarget, "success", function(){} );
event target or event types
space-separated event types
the event handler to be registered
this
Registers the specified event handler for the specified events. The specified event handler is invoked at most once. When the handler is invoked, the this keyword is a reference to the this class. This method supports space-separated event types and namespces.
one( "success", function(){} );
// `success` event with a namespace `sample`
one( "success.sample", function(){} );
// Multiple namespaces
one( "success.ns1.ns2.ns3", function(){} );
// Multiple event types
one( "success fail", function(){} );
space-separated event types
The event handler to be registered
this
Registers the specified event handler for the specified events. The specified event handler is invoked at most once. When the handler is invoked, the this keyword is a reference to the this class. This method supports space-separated event types and namespces.
one( "success", function(){} );
// `success` event with a namespace `sample`
one( "success.sample", function(){} );
// Multiple namespaces
one( "success.ns1.ns2.ns3", function(){} );
// Multiple event types
one( "success fail", function(){} );
event target
space-separated event types
The event handler to be registered
this
Registers the event handler for the unregistration events of the specified events. The handler is invoked with Connection and a boolean when the event handlers of the specified events are unregistered. The latter boolean gets true if this is the last handler of the event identified by Connection.type.
onoff("eventname", function( connection, isLast ){
// DO SOMETHING HERE
});
space-separated event names
an event handler
this
Registers the event handler for the registration events of the specified events. The handler is invoked with Connection and a boolean when the event handlers of the specified events are registered. The latter boolean gets true if this is the first handler of the event identified by Connection.type.
onon("eventname", function( connection, isFirst ){
if( some-condition ) {
connection.trigger( this, null, [ first-event-parameter, second-event-parameter, ... ] );
}
});
space-separated event types
an event handler
this
Associates the specified value with the specified key. If this map contained the specified key previously, the old value is replaced by the specified value.
the key with which the specified value is to be associated
the old value or null if this map did not contain the specified key previously
Copies all the mappings of the specified mapping to this map.
mappings to be stored in this map
this
Removes the mapping of the specified key.
the key of the mapping to be removed
the old value or null if this map did not contain the specified key
Reassociates the value of the specified key.
the key which is to be reassociated
the value of the specified key or null if this map did not contain the specified key previously
Invokes all the handlers of the specified event.
retrigger( originalEvent, "success" );
// With two parameters true and 156
retrigger( originalEvent, "success", [true, 156] );
// Namespaced event type
retrigger( originalEvent, "success.sample" );
// Multiple event types
retrigger( originalEvent, "success fail" );
the event object
space-separated event types
the returned values of the invoked handlers
Invokes all the handlers of the specified event.
retrigger( originalEvent, "success" );
// With two parameters true and 156
retrigger( originalEvent, "success", [true, 156] );
// Namespaced event type
retrigger( originalEvent, "success.sample" );
// Multiple event types
retrigger( originalEvent, "success fail" );
event target
the event object
space-separated event types
event parameters
the returned values of the invoked handlers
Returns the size of this map.
the size of this map
Returns a view of the portion of this map whose keys range from fromKey
to toKey
.
low endpoint of the keys in the view
high endpoint of the keys in the view
a view of the specified portion of this map
Returns a view of the portion of this map whose keys range from fromKey
to toKey
.
low endpoint of the keys in the view
true if the low endpoint is to be included in the view
high endpoint of the keys in the view
true if the high endpoint is to be included in the view
a view of the specified portion of this map
Returns a view of the portion of this map whose keys are higher than (or equal to,
if inclusive is true) the specified key fromKey
.
low endpoint of the keys in the view
true if the specified key fromKey
is to be included in the view
a view of the specified portion of this map
Returns the JSON representation of this map. Must not change the returned JSON.
the JSON representation of this map
Returns the object representation of this map. Must not change the returned object.
the object representation of this map
Returns the string representation of this container.
the string representation of this container
Invokes all the handlers of the specified event.
trigger( "success" );
// With two parameters true and 156
trigger( "success", [true, 156] );
// Namespaced event type
trigger( "success.sample" );
// Multiple event types
trigger( "success fail" );
space-separated event types
event parameters
the returned values of the invoked handlers
Invokes all the handlers of the specified event.
trigger( "success" );
// With two parameters true and 156
trigger( "success", [true, 156] );
// Namespaced event type
trigger( "success.sample" );
// Multiple event types
trigger( "success fail" );
Event target
space-separated event types
event parameters
the returned values of the invoked handlers
Unlocks this data.
this
Returns the array of the values in this map.
the array of the values in this map
Extends the specified target with the Connectable methods.
non-null target to be extended
the specified target
Generated using TypeDoc
A view of a navigable map.