module TokyoMetro::Modules::Api::Info::Decision::TrainType

Private Instance Methods

is_train_of?( *args , compared: @train_name )
Alias for: train_of?
is_train_type_of?( *args , compared: @train_type )
Alias for: train_type_of?
train_of?( *args , compared: @train_name ) click to toggle source
# File lib/tokyo_metro/modules/api/info/decision/train_type.rb, line 13
def train_of?( *args , compared: @train_name )
  super( *args , compared )
end
Also aliased as: is_train_of?
train_type_of?( *args , compared: @train_type ) click to toggle source
# File lib/tokyo_metro/modules/api/info/decision/train_type.rb, line 7
def train_type_of?( *args , compared: @train_type )
  super( *args , compared )
end
Also aliased as: is_train_type_of?