Logo

Programming-Idioms

History of Idiom 19 > diff from v25 to v26

Edit summary for version 26 by :
Restored version 24

Version 25

2016-02-18, 16:57:57

Version 26

2016-02-18, 17:20:20

Idiom #19 Reverse a list

Reverse the order of the elements of list x .
This may reverse "in-place" and destroy the original ordering.

Idiom #19 Reverse a list

Reverse the order of the elements of list x .
This may reverse "in-place" and destroy the original ordering.

Imports
with Ada.Containers.Vectors;
use Ada.Containers;
Code
X.Reverse_Elements;