DQueryElement.isFunction

Returns true if the element refers to a function.

struct DQueryElement(QueryType, string Name, alias Overload = null)
@property
alias isFunction = Alias!(
is(typeof(GetMember!(QueryType, Name)) == function) &&
!is(typeof(Overload) == typeof(null))
)

Meta