Skip to content

Latest commit

 

History

History
297 lines (163 loc) · 5.49 KB

json.str.md

File metadata and controls

297 lines (163 loc) · 5.49 KB

assemblyscript-json / JSON / Str

Class: Str

JSON.Str

Hierarchy

Table of contents

Constructors

Properties

Accessors

Methods

Constructors

constructor

+ new Str(_str: string): Str

Parameters:

Name Type
_str string

Returns: Str

Inherited from: Value

Defined in: JSON.ts:198

Properties

_str

_str: string

Accessors

isArr

isArr(): boolean

Returns: boolean

Defined in: JSON.ts:178


isBool

isBool(): boolean

Returns: boolean

Defined in: JSON.ts:164


isFloat

isFloat(): boolean

Returns: boolean

Defined in: JSON.ts:150


isInteger

isInteger(): boolean

Returns: boolean

Defined in: JSON.ts:157


isNull

isNull(): boolean

Returns: boolean

Defined in: JSON.ts:171


isNum

isNum(): boolean

Returns: boolean

Defined in: JSON.ts:143


isObj

isObj(): boolean

Returns: boolean

Defined in: JSON.ts:185


isString

isString(): boolean

Returns: boolean

Defined in: JSON.ts:136

Methods

toString

toString(): string

Returns: string

Overrides: Value

Defined in: JSON.ts:203


valueOf

valueOf(): string

Returns: string

Defined in: JSON.ts:207


Array

StaticArray(): Arr

Returns: Arr

Inherited from: Value

Defined in: JSON.ts:129


Bool

StaticBool(b: bool): Bool

Parameters:

Name Type
b bool

Returns: Bool

Inherited from: Value

Defined in: JSON.ts:123


Float

StaticFloat(num: number): Float

Parameters:

Name Type
num number

Returns: Float

Inherited from: Value

Defined in: JSON.ts:117


Integer

StaticInteger(num: number): Integer

Parameters:

Name Type
num number

Returns: Integer

Inherited from: Value

Defined in: JSON.ts:120


Null

StaticNull(): Null

Returns: Null

Inherited from: Value

Defined in: JSON.ts:126


Number

StaticNumber(num: number): Num

Parameters:

Name Type
num number

Returns: Num

Inherited from: Value

Defined in: JSON.ts:114


Object

StaticObject(): Obj

Returns: Obj

Inherited from: Value

Defined in: JSON.ts:132


String

StaticString(str: string): Str

Parameters:

Name Type
str string

Returns: Str

Inherited from: Value

Defined in: JSON.ts:111