Class: Rucades::Attributes
- Inherits:
-
Object
- Object
- Rucades::Attributes
- Defined in:
- sig/rucades.rbs
Instance Method Summary collapse
- #<< ⇒ void
-
#[] ⇒ Attribute
Возвращает атрибут с заданным индексом.
-
#add ⇒ void
Добавляет атрибут в коллекцию.
-
#clear ⇒ void
Очищает коллекцию.
-
#count ⇒ Integer
Возвращает количество атрибутов в коллекции.
-
#remove ⇒ void
Удаляет атрибут из коллекции.
Instance Method Details
#<< ⇒ void
This method returns an undefined value.
285 |
# File 'sig/rucades.rbs', line 285
def <<: (Attribute attribute) -> void
|
#[] ⇒ Attribute
Возвращает атрибут с заданным индексом.
281 |
# File 'sig/rucades.rbs', line 281
def []: (Integer index) -> Attribute
|
#add ⇒ void
This method returns an undefined value.
Добавляет атрибут в коллекцию.
284 |
# File 'sig/rucades.rbs', line 284
def add: (Attribute attribute) -> void
|
#clear ⇒ void
This method returns an undefined value.
Очищает коллекцию.
291 |
# File 'sig/rucades.rbs', line 291
def clear: () -> void
|
#count ⇒ Integer
Возвращает количество атрибутов в коллекции.
278 |
# File 'sig/rucades.rbs', line 278
def count: () -> Integer
|
#remove ⇒ void
This method returns an undefined value.
Удаляет атрибут из коллекции.
288 |
# File 'sig/rucades.rbs', line 288
def remove: (Integer index) -> void
|