Teledyne-lecroy LeCroy Analyzers File Based Decoding Manual Instrukcja Użytkownika Strona 21

  • Pobierz
  • Dodaj do moich podręczników
  • Drukuj
  • Strona
    / 82
  • Spis treści
  • BOOKMARKI
  • Oceniono. / 5. Na podstawie oceny klientów
Przeglądanie stron 20
File-based Decoding User Manual Chapter 4: Operators
LeCroy Corporation 15
more() Returns a non-zero
value if the list
iterator did not
reach the bounds
of the list
List Integer list = [1, 2, 3];
for( item = first(list);
more(list); item = next(list) )
{
ProcessItem( item );
}
last() Returns the last
element of the list
and resets the
position of the list
iterator to the end
of the list
List Any list = [1, 2, 3];
for( item = last(list);
more(list); item = prev(list) )
{
ProcessItem( item );
}
prev() Returns the
previous element in
the list relative to
the previous
position of the list
iterator
List Any list = [1, 2, 3];
for( item = last(list);
more(list); item = prev(list) )
{
ProcessItem( item );
}
Operator
Symbol Description Operand Types
Result
Types Examples
Table 4.2 Operators (Continued)
Przeglądanie stron 20
1 2 ... 16 17 18 19 20 21 22 23 24 25 26 ... 81 82

Komentarze do niniejszej Instrukcji

Brak uwag