RangeConvertor.converts

Get convertor

  1. bool converts(Object from, TypeInfo to)
    class RangeConvertor(To, From)
    @safe const nothrow
    bool
    converts
    (
    in Object from
    ,
    const TypeInfo to
    )
    if (
    isForwardRange!From &&
    isForwardRange!To
    &&
    __traits(hasMember, To, "put")
    )
  2. bool converts(Object from, Object to)
  3. mixin ConvertsFromToMixin!(From, To) DefaultImplementation

Return Value

Type: bool

Convertor

Meta