walkman
Member level 1
- Joined
- Jul 24, 2010
- Messages
- 40
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1,286
- Location
- hyderabac
- Activity points
- 1,532
subtype UREAL is REAL;
type UREAL_VECTOR is array (natural range <>) of UREAL;
type UREAL_TABLE is array (natural range <> , natural range <>) of REAL;
function resolved (S : UREAL_VECTOR) return UREAL;
subtype RREAL is resolved UREAL;
could you plz any one explain the above lines..i understood first line .but in second line what is meaning of "natural range<>".and i didn't understood 4,5 lines
type UREAL_VECTOR is array (natural range <>) of UREAL;
type UREAL_TABLE is array (natural range <> , natural range <>) of REAL;
function resolved (S : UREAL_VECTOR) return UREAL;
subtype RREAL is resolved UREAL;
could you plz any one explain the above lines..i understood first line .but in second line what is meaning of "natural range<>".and i didn't understood 4,5 lines