isThread property

bool get isThread

Query if the stored value is of type LuaThread.

Implementation

bool get isThread => switch (isRef) {
  true => deref().isThread,
  false => _value is LuaThread,
};