Initializing help system before first use

gettypeid

Purpose
Get the type ID of an entity.
Synopsis
function gettypeid(e: ?):integer
Argument
An entity (must be a scalar)
Return value
A type ID, 0 if the information is not available or -1 if the entity is a union that is not defined.
Example
declarations
 MYSET=set of integer
 s: MYSET
 u1,u2,u3,u4: any
end-declarations
  ...
u1:=s
u2:={1,2,3}
u4:=13.3
writeln("ElType of u1: ", u1.typeid,            ! = MYSET.id
        "\nElType of u4: ", u4.typeid,          ! = real.id=2
        "\nElType of u2: ", u2.typeid,          ! = 0
        "\nElType of u3: ", u3.typeid)          ! = -1
Further information
1. This function retrieves the type ID of a variable. If this variable is a union, it returns the type ID of the value stored in this union. This information is always defined if the value is a scalar ( i.e. a constant or a reference) but it will be available for a structured type only if the value comes from an entity that is defined as an instance of a defined user type.
2. When the function returns 0, the properties of the value stored in the union can still be obtained via getstruct and geteltype.
Related topics

© 2001-2024 Fair Isaac Corporation. All rights reserved. This documentation is the property of Fair Isaac Corporation (“FICO”). Receipt or possession of this documentation does not convey rights to disclose, reproduce, make derivative works, use, or allow others to use it except solely for internal evaluation purposes to determine whether to purchase a license to the software described in this documentation, or as otherwise set forth in a written software license agreement between you and FICO (or a FICO affiliate). Use of this documentation and the software described in it must conform strictly to the foregoing permitted uses, and no other use is permitted.