Method: Nendo::BuiltinFunctions#__assertList

Defined in:
lib/nendo/ruby/builtin_functions.rb

#__assertList(funcname, arg) ⇒ Object



51
52
53
54
55
# File 'lib/nendo/ruby/builtin_functions.rb', line 51

def __assertList( funcname, arg )
  if Cell != arg.class
    raise ArgumentError, "Error: %s expects a list argument.\n"
  end
end