filterByInterface

Given a range of objects filter them by Interface they are implementing.

  1. InterfaceFilter!(Range, Interface) filterByInterface(Range range)
    InterfaceFilter!(Range, Interface)
    filterByInterface
    (
    Interface
    Range
    )
    (
    auto ref Range range
    )
  2. struct InterfaceFilter(Range, Interface)

Parameters

Interface

interface by which to filter the range

range Range

range of objects to filter

Return Value

Type: InterfaceFilter!(Range, Interface)

InterfaceFilter!(Range, Interface) a range of filtered objects by Interface

Meta