Example #1
0
BOOLEAN type_info_is_general_array(Type_Info_Handle tih)
{
    TypeDesc* td = (TypeDesc*)tih;
    assert(td);
    return td->is_array() && !td->is_vector();
} //type_info_is_general_array
Example #2
0
BOOLEAN type_info_is_vector(Type_Info_Handle tih)
{
    TypeDesc* td = (TypeDesc*)tih;
    assert(td);
    return td->is_vector();
} //type_info_is_vector