HH\is_class_meth

Checks whether the input is a native class method pointer

namespace HH;

function is_class_meth(
  mixed $arg,
): bool;
HH\is_class_meth(Foo::bar<>); // true
HH\is_class_meth(bing<>); // false

Parameters

  • mixed $arg

Returns

  • bool