Struct cranelift_entity::EntitySet[][src]

pub struct EntitySet<K> where
    K: EntityRef
{ /* fields omitted */ }

A set of K for densely indexed entity references.

The EntitySet data structure uses the dense index space to implement a set with a bitvector. Like EntityMap, an EntitySet is used to associate secondary information with entities.

Methods

impl<K> EntitySet<K> where
    K: EntityRef
[src]

Shared EntitySet implementation for all value types.

Create a new empty set.

Get the element at k if it exists.

Is this set completely empty?

Remove all entries from this set.

Important traits for Keys<K>

Iterate over all the keys in this set.

Resize the set to have n entries by adding default entries as needed.

Insert the element at k.

Trait Implementations

impl<K: Debug> Debug for EntitySet<K> where
    K: EntityRef
[src]

Formats the value using the given formatter. Read more

impl<K: Clone> Clone for EntitySet<K> where
    K: EntityRef
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<K> Send for EntitySet<K> where
    K: Send

impl<K> Sync for EntitySet<K> where
    K: Sync