Рубин | Установить << метод
Опубликовано: 11 Марта, 2022
<< - это встроенный в Ruby метод, который добавляет элемент в набор.
Syntax: s1.name << (element)
Parameters: The function takes an element which is to be added to the set.
Return Value: It adds an element to the set.
Пример 1 :
#Ruby program to illustrate the << method #requires the set require "set" s1 = Set[2, 1] #Prints s1 puts s1 #Enters 4 into it s1 << 4 #Prints s1 puts s1 #Enters 4 into it #But set has already 4 s1 << 4 #Prints s1 puts s1 |
Выход :
Установить: {2, 1} Установить: {2, 1, 4} Установить: {2, 1, 4}
Example 2:
#Ruby program to illustrate the << method #requires the set require "set" s1 = Set[] #Prints s1 puts s1 #Enters 1 into it s1 << 1 #Enters 2 into it s1 << 2 #Prints s1 puts s1 |
Выход :
Установленный: {} Установить: {1, 2}
Ссылка : https://devdocs.io/ruby~2.5/set#method-i-3C-3C