class YARP::RangeNode
Experimental RBS support (using type sampling data from the type_fusion
project).
# sig/yarp/node.rbs class YARP::RangeNode < YARP::Node def initialize: (YARP::IntegerNode left, YARP::IntegerNode right, YARP::Location operator_loc, Integer flags, YARP::Location location) -> void end
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
c if a =~ /left/ … b =~ /right/
^^^^
1..2
Represents the use of the ‘..` or `…` operators.
def accept(visitor)
def accept(visitor) visitor.visit_range_node(self) end
def child_nodes
def child_nodes [left, right] end
def deconstruct_keys(keys)
def deconstruct_keys(keys) { left: left, right: right, operator_loc: operator_loc, flags: flags, location: location } end
def exclude_end?
def exclude_end? flags.anybits?(RangeFlags::EXCLUDE_END) end
def initialize(left, right, operator_loc, flags, location)
Experimental RBS support (using type sampling data from the type_fusion
project).
def initialize: (YARP::IntegerNode left, YARP::IntegerNode right, YARP::Location operator_loc, Integer flags, YARP::Location location) -> void
This signature was generated using 1 sample from 1 application.
def initialize(left, right, operator_loc, flags, location) @left = left @right = right @operator_loc = operator_loc @flags = flags @location = location end
def operator
def operator operator_loc.slice end