Logo

Programming-Idioms

History of Idiom 19 > diff from v23 to v24

Edit summary for version 24 by :
New Ada implementation by user [Smaehtin]

Version 23

2016-02-16, 21:39:14

Version 24

2016-02-17, 16:28:45

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;