isClass abstract method

bool isClass()

Checks if this class represents a standard class type.

Returns:

  • true for regular class declarations
  • false for other declaration types (mixin, enum, etc.)

Example:

class User {}
Class<User>().isClass(); // true

Implementation

bool isClass();