method

wrap_args

ruby latest stable - Class: DL::ValueUtil

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v2_1_10) is shown here.

wrap_args(args, tys, funcs, &block)
public

No documentation available.

# File ext/dl/lib/dl/value.rb, line 39
    def wrap_args(args, tys, funcs, &block)
      result = []
      tys ||= []
      args.each_with_index{|arg, idx|
        result.push(wrap_arg(arg, tys[idx], funcs, &block))
      }
      result
    end