Jun 14, 2004 #1 C cnspy Full Member level 3 Joined Sep 10, 2002 Messages 150 Helped 5 Reputation 10 Reaction score 1 Trophy points 1,298 Activity points 1,041 In e language, can I use unit type in "list of type" command? Such as: fileA : unit test_u { }; fileB : tests[5] : list of test_u; Is it OK?
In e language, can I use unit type in "list of type" command? Such as: fileA : unit test_u { }; fileB : tests[5] : list of test_u; Is it OK?
Jun 16, 2004 #2 Z zwj_seu Member level 2 Joined Jun 12, 2004 Messages 43 Helped 0 Reputation 0 Reaction score 0 Trophy points 1,286 Activity points 272 Do you want to generate a list of size 5 ,type test_u? If so ,I'll do like this: tests:list of test_u is instance; keep tests.size()==5; And they must be put in a unit.
Do you want to generate a list of size 5 ,type test_u? If so ,I'll do like this: tests:list of test_u is instance; keep tests.size()==5; And they must be put in a unit.
Jun 16, 2004 #3 C cnspy Full Member level 3 Joined Sep 10, 2002 Messages 150 Helped 5 Reputation 10 Reaction score 1 Trophy points 1,298 Activity points 1,041 thanks a lot.