scalar#

Simple classes that subclass Python’s builtin float, int, and str classes. These classes are used when reading vvtest .vvt files so that a ‘string’ property can be added and later used to create test case execution directories

class Float(x=0, /)#

Bases: float

property string: str#
class Integer#

Bases: int

property string: str#
class String#

Bases: str

property string: str#
cast(arg: str, type: str) Integer | Float | String#