Рубин | Установить> = метод
Опубликовано: 10 Марта, 2022
> = - это встроенный в Ruby метод, который возвращает истину, если набор является надмножеством другого набора. Если это не надмножество, возвращается false.
Syntax: s1 >= s2.name
Parameters: The function takes a mandatory parameter s2 which is checked for superset of s1.
Return Value: It returns true if set s2 is a superset of s1, else it returns false.
Пример 1 :
#Ruby program to illustrate #the >= method #requires the set require "set" s1 = Set[1, 2] s2 = Set[1, 2, 3] #superset ? method used puts s2 >= s1 |
Выход :
правда
Example 2:
#Ruby program to illustrate #the >= method #requires the set require "set" s1 = Set[9, 7, 5] s2 = Set[12, 76] #>= method used puts s2 >= s1 |
Выход :
ложный
Ссылка : https://devdocs.io/ruby~2.5/set#method-i-3E-3D