Convert an array of method arguments to Float objects. If any cannot be converted, raise ArgumentError and issue a message.
Source Code
# File rvg/misc.rb, line 42 def self.fmsg(*args) "at least one argument cannot be converted to Float (got #{args.collect {|a| a.class}.join(', ')})" end
<code/>and<pre/>for code samples.