Method: TkVariable#===

Defined in:
lib/tk/variable.rb

#===(other) ⇒ Object



1266
1267
1268
1269
1270
1271
1272
# File 'lib/tk/variable.rb', line 1266

def ===(other)
  if other.kind_of?(TkVariable)
    self.id == other.id
  else
    super
  end
end