Skip to content

Latest commit

 

History

History
43 lines (27 loc) · 541 Bytes

type-isnullable.md

File metadata and controls

43 lines (27 loc) · 541 Bytes
description title
Learn more about: Type.IsNullable
Type.IsNullable

Type.IsNullable

Syntax

  
Type.IsNullable(type as type) as logical

About

Returns true if a type is a nullable type; otherwise, false.

Example 1

Determine if number is nullable.

Usage

Type.IsNullable(type number)

Output

false

Example 2

Determine if type nullable number is nullable.

Usage

Type.IsNullable(type nullable number)

Output

true