= MMeetthhoodd##====== (from ruby core) ------------------------------------------------------------------------ method === obj -> result_of_method ------------------------------------------------------------------------ Invokes the method with obj as the parameter like #call. This allows a method object to be the target of a when clause in a case statement. require 'prime' case 1373 when Prime.method(:prime?) # ... end