Class.getMethods

Ditto, but returns only methods that match the given name.

  1. const(Method)[] getMethods()
  2. const(Method)[] getMethods(string name)
    class Class
    override const
    const(Method)[]
    getMethods
    (
    string name
    )

Parameters

name string

The name of the method to look for.

Return Value

Type: const(Method)[]

All methods that match the given name.

Meta