1%feature("docstring") OT::Greater
2"Greater comparison operator.
3
4Available constructors:
5    Greater()
6
7See also
8--------
9Equal, GreaterOrEqual, Less, LessOrEqual
10
11Examples
12--------
13>>> import openturns as ot
14>>> operator = ot.Greater()
15>>> print(operator(1, 2))
16False
17>>> print(operator(2, 1))
18True
19>>> print(operator(2, 2))
20False
21"