Qian Xu wrote:
> Hi All,
> 
> can D check, whether a class A an Interface B supports?
> 
> like:
> 
>   if (supports(class_A, intf_B))
>   {
>      cast(intf_B) (class_A).hello();
>   }
> 
> --Qian
what I have found is:
  if (is(class_A == intf_B))
  {
    cast(intf_B) (class_A).hello();
  }
Is there any better one?
--Qian