Previous Page | Next Page

SAS Component Language Dictionary

ITEMTYPE



Reports the type of an item in an SCL list
Category: List

Syntax
Details
See Also

Syntax

type=ITEMTYPE(list-id<,index>);

type

contains the type of the specified item:

C

The item is a character item.

N

The item is a numeric item.

L

The item is a sublist item.

O

The item is a component item.

Type: Character

list-id

is the identifier of the list containing the item whose type is returned by ITEMTYPE. An invalid list-id produces an error condition.

Type: Numeric or List

index

is the position of the item in the list. The position can be specified as a positive or negative number. By default, index is 1 (the first item). If index is a positive number, then the item is at position index from the beginning of the list. If index is a negative number, then the item is at position ABS(index) from the end of the list. An error condition results if the absolute value for index is zero or if it is greater than the number of items in the list.

Type: Numeric


Details

An item's type depends on which function was used to create the item:

C (character) items

are created by SETITEMC, SETNITEMC, INSERTC.

N (numeric) items

are created by SETITEMN, SETNITEMN, INSERTN, MAKELIST, MAKENLIST.

L (sublist) items

are created by SETITEML, SETNITEML, INSERTL.

O (component) items

are created by SETITEMO, SETNITEMO, INSERTO.


See Also

INSERTC, INSERTL, INSERTN, and INSERTO

MAKELIST

MAKENLIST

SETITEMC, SETITEML, SETITEMN, and SETITEMO

SETNITEMC, SETNITEML, SETNITEMN, and SETNITEMO

Previous Page | Next Page | Top of Page