tash_8.7.2_4c588c12/src/tash-lists.adb

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
-------------------------------------------------------------------
--
--  Unit Name:    Tash.Lists body
--
--  File Name:    tash-lists.adb
--
--  Purpose:      Defines the Tash list type and operations on it.
--
--  Copyright (c) 1999-2000 Terry J. Westley
--
--  Tash is free software; you can redistribute it and/or modify it under
--  terms of the GNU General Public License as published by the Free
--  Software Foundation; either version 2, or (at your option) any later
--  version. Tash is distributed in the hope that it will be useful, but
--  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
--  or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
--  for more details. You should have received a copy of the GNU General
--  Public License distributed with Tash; see file COPYING. If not, write to
--
--          Free Software Foundation
--          59 Temple Place - Suite 330
--          Boston, MA 02111-1307, USA
--
--  As a special exception, if other files instantiate generics from this
--  unit, or you link this unit with other files to produce an executable,
--  this unit does not by itself cause the resulting executable to be
--  covered by the GNU General Public License. This exception does not
--  however invalidate any other reasons why the executable file might be
--  covered by the GNU Public License.
--
--  Tash is maintained at http://tcladashell.sourceforge.net/.
--
--------------------------------------------------------------------

with Ada.Integer_Text_IO;
with Ada.Strings.Unbounded;
with Ada.Tags;
with CArgv;
with CHelper;
with Interfaces.C.Strings;
with System;
with Tcl.Ada;

package body Tash.Lists is

   function Length
     (Interp : in Tcl.Tcl_Interp;
      Obj    : in Tcl.Tcl_Obj) return Interfaces.C.int;
   function Get_Element
     (Interp : in Tcl.Tcl_Interp;
      List   : in Tcl.Tcl_Obj;
      Index  : in Positive) return Tcl.Tcl_Obj;
   function Type_Of_List_Element
     (Obj : in Tcl.Tcl_Obj) return String;

   use type Interfaces.C.int;
   use type Interfaces.C.Strings.chars_ptr;
   use type Ada.Strings.Direction;
   use type Ada.Tags.Tag;

   --  Tcl_Free is define for use as described
   --  in the Tcl_SplitList man page.
   ------------------------------------------
   procedure Tcl_Free (Ptr : in CArgv.Chars_Ptr_Ptr);
   pragma Import (C, Tcl_Free, "Tcl_Free");

   function Is_Empty (List : in Tash_List) return Boolean is
   begin --  Is_Empty
      return Is_Null (List) or else Length (List) = 0;
   end Is_Empty;
   pragma Inline (Is_Empty);

   --  Get length of a Tcl list object; return 0 if null
   ----------------------------------------------------
   function Length
     (Interp : in Tcl.Tcl_Interp;
      Obj    : in Tcl.Tcl_Obj)
      return   Interfaces.C.int
   is
      --
      Result : Interfaces.C.int;
      IntPtr : aliased Interfaces.C.int;
      use type Tcl.Tcl_Obj;
   begin --  Length
      if Obj = null then
         return 0;
      else
         Result :=
            Tcl.Tcl_ListObjLength
              (interp  => Interp,
               listPtr => Obj,
               intPtr  => IntPtr'Access);
         Tash_Interp.Assert (Interp, Result, List_Error'Identity);
         return IntPtr;
      end if;
   end Length;

   function Strcmp
     (S1   : in Interfaces.C.Strings.chars_ptr;
      S2   : in Interfaces.C.Strings.chars_ptr)
      return Interfaces.C.int;
   pragma Import (C, Strcmp, "strcmp");
   pragma Unreferenced (Strcmp);  -- XXX why is it here?

   --  Get an element of a Tcl list.
   -------------------------------
   function Get_Element
     (Interp : in Tcl.Tcl_Interp;
      List   : in Tcl.Tcl_Obj;
      Index  : in Positive)
      return   Tcl.Tcl_Obj
   is
      --
      Result     : Interfaces.C.int;
      Length     : constant Interfaces.C.int :=
        Tash.Lists.Length (Interp, List);
      Object : aliased Tcl.Tcl_Obj;
      use type Tcl.Tcl_Obj;
   begin --  Get_Element
      if List = null then
         raise List_Error;
      elsif Length < Interfaces.C.int (Index) then
         raise List_Error;
      else
         Result     :=
            Tcl.Tcl_ListObjIndex
              (interp    => Interp,
               listPtr   => List,
               index     => Interfaces.C.int (Index - 1),
               objPtrPtr => Object'Unchecked_Access);
         Tash_Interp.Assert (Interp, Result, List_Error'Identity);
         return Object;
      end if;
   end Get_Element;

   function To_Tash_List (Str : in String) return Tash_List is
      Argc      : aliased Interfaces.C.int;
      Argv      : aliased CArgv.Chars_Ptr_Ptr;
      Save_Argv : aliased CArgv.Chars_Ptr_Ptr;
      C_Str     : aliased Interfaces.C.char_array := Interfaces.C.To_C (Str);
      New_List  : Tash_List;
      New_Obj   : Tcl.Tcl_Obj;
      Objv      : Tcl.Tcl_Obj_Array (1 .. 1);
      Result    : Interfaces.C.int;
      Interp    : Tcl.Tcl_Interp;

   begin --  To_Tash_List

      if Str = "" then
         return New_List;
      end if;

      --  Tcl_SplitList creates a properly formed Tcl string
      --  including backslash substitution and braces.
      -----------------------------------------------------
      Tash_Interp.Get (Interp);
      Result :=
         Tcl.Tcl_SplitList
           (interp  => Interp,
            listStr =>
               Interfaces.C.Strings.To_Chars_Ptr (C_Str'Unchecked_Access),
            argcPtr => Argc'Unchecked_Access,
            argvPtr => Argv'Unchecked_Access);
      Tash_Interp.Assert (Interp, Result, List_Error'Identity);

      --  Initialize New_List as an empty list
      ---------------------------------------
      if Argc > 0 then
         New_List.Obj := Tcl.Tcl_NewListObj (objc => 0, objv => Objv);
         Tcl.Tcl_IncrRefCount (New_List.Obj);
      end if;

      --  Append each string element created by Tcl_SplitList to New_List
      ------------------------------------------------------------------
      Save_Argv := Argv;
      for I in  1 .. Argc loop
         New_Obj :=
            Tcl.Tcl_NewStringObj
              (bytes  => Argv.all,
               length => CHelper.Length (Argv.all));
         Result  :=
            Tcl.Tcl_ListObjAppendElement
              (interp  => Interp,
               listPtr => New_List.Obj,
               objPtr  => New_Obj);
         Tash_Interp.Assert (Interp, Result, List_Error'Identity);
         CArgv.Argv_Pointer.Increment (Argv);
      end loop;

      --  Free space allocated for Argv by Tcl_SplitList
      -------------------------------------------------
      Tcl_Free (Save_Argv);

      Tash_Interp.Release (Interp);

      return New_List;

   end To_Tash_List;

   function "+" (Str : in String) return Tash_List is
   begin --  "+"
      return To_Tash_List (Str);
   end "+";
   pragma Inline ("+");

   function "&"
     (Left  : in Tash_List;
      Right : in Tash_List)
      return  Tash_List
   is
      --
      New_List : Tash_List;
   begin --  "&"
      New_List := Copy (Left);
      Append_Elements (List => New_List, Elements => Right);
      return New_List;
   end "&";

   function "&" (Left : in String; Right : in Tash_List) return Tash_List is
      --
      New_List : Tash_List;
   begin --  "&"
      New_List := To_Tash_List (Left);
      Append_Elements (List => New_List, Elements => Right);
      return New_List;
   end "&";

   function "&" (Left : in Tash_List; Right : in String) return Tash_List is
      --
      New_List : Tash_List;
   begin --  "&"
      New_List := Copy (Left);
      Append (List => New_List, Element => Right);
      return New_List;
   end "&";

   function Copy (List : in Tash_List) return Tash_List is
      Len      : Natural;
      Objv     : Tcl.Tcl_Obj_Array (1 .. 1);
      Interp   : Tcl.Tcl_Interp;
      Obj      : Tcl.Tcl_Obj;
      New_List : Tash_List;
      Result   : Interfaces.C.int;

   begin --  Copy

      Len := Length (List);
      if Len = 0 then
         return New_List;
      end if;

      --  Initialize New_List as an empty list
      ---------------------------------------
      New_List.Obj := Tcl.Tcl_NewListObj (objc => 0, objv => Objv);
      Tcl.Tcl_IncrRefCount (New_List.Obj);

      --  Get and append each element
      ------------------------------
      Tash_Interp.Get (Interp);
      for I in  1 .. Len loop
         Obj :=
            Tash.Lists.Get_Element
              (Interp => Interp,
               List   => List.Obj,
               Index  => I);
         Result  :=
            Tcl.Tcl_ListObjAppendElement
              (interp  => Interp,
               listPtr => New_List.Obj,
               objPtr  => Obj);
         Tash_Interp.Assert (Interp, Result, List_Error'Identity);
      end loop;
      Tash_Interp.Release (Interp);

      return New_List;

   end Copy;

   function Duplicate (List : in Tash_List) return Tash_List is
      Len      : Natural;
      Objv     : Tcl.Tcl_Obj_Array (1 .. 1);
      Interp   : Tcl.Tcl_Interp;
      Obj      : Tcl.Tcl_Obj;
      New_List : Tash_List;
      Result   : Interfaces.C.int;

   begin --  Duplicate

      Len := Length (List);
      if Len = 0 then
         return New_List;
      end if;

      --  Initialize New_List as an empty list
      ---------------------------------------
      New_List.Obj := Tcl.Tcl_NewListObj (objc => 0, objv => Objv);
      Tcl.Tcl_IncrRefCount (New_List.Obj);

      --  Get and append duplicate of each element
      -------------------------------------------
      Tash_Interp.Get (Interp);
      for I in  1 .. Len loop
         Obj :=
            Tash.Lists.Get_Element
              (Interp => Interp,
               List   => List.Obj,
               Index  => I);
         Result  :=
            Tcl.Tcl_ListObjAppendElement
              (interp  => Interp,
               listPtr => New_List.Obj,
               objPtr  => Tcl.Tcl_DuplicateObj (Obj));
         Tash_Interp.Assert (Interp, Result, List_Error'Identity);
      end loop;
      Tash_Interp.Release (Interp);

      return New_List;

   end Duplicate;

   function To_String (List : in Tash_List) return String is
      --
      Length : aliased Interfaces.C.int;
   begin --  To_String
      if Is_Null (List) then
         return "";
      else
         return CHelper.Value
                  (Tcl.Tcl_GetStringFromObj (List.Obj, Length'Access));
      end if;
   end To_String;

   function Tcl_SplitObjCmd
     (dummy  : in Tcl.ClientData;
      interp : in Tcl.Tcl_Interp;
      objc   : in Interfaces.C.int;
      objv   : in Tcl.Tcl_Obj_Array)
      return   Interfaces.C.int;
   pragma Import (C, Tcl_SplitObjCmd, "Tcl_SplitObjCmd");

   function Split
     (Str      : in String;
      Split_At : in String := " " & ASCII.CR & ASCII.HT & ASCII.LF)
      return     Tash_List
   is
      --
      Objc     : constant Interfaces.C.int := 3;
      Objv     : Tcl.Tcl_Obj_Array (1 .. Objc);
      Result   : Interfaces.C.int;
      New_List : Tash_List;
      Interp   : Tcl.Tcl_Interp;
      Interp_Result : Tcl.Tcl_Obj;
   begin --  Split
      Objv (1) := Tash.To_Tcl_Obj ("split");
      Objv (2) := Tash.To_Tcl_Obj (Str);
      Objv (3) := Tash.To_Tcl_Obj (Split_At);
      Tash_Interp.Get (Interp);
      Tcl.Tcl_ResetResult (Interp);
      Result :=
         Tcl_SplitObjCmd
           (dummy  => System.Null_Address,
            interp => Interp,
            objc   => Objc,
            objv   => Objv);
      for I in  Objv (1 .. 3)'Range loop
         Tcl.Tcl_DecrRefCount (Objv (I));
      end loop;
      Tash_Interp.Assert (Interp, Result, List_Error'Identity);
      Interp_Result := Tcl.Tcl_GetObjResult (Interp);
      New_List.Obj := Tcl.Tcl_DuplicateObj (Interp_Result);
      Tcl.Tcl_ResetResult (Interp);
      Tash_Interp.Release (Interp);
      Tcl.Tcl_IncrRefCount (New_List.Obj);
      return New_List;
   end Split;

   function Tcl_JoinObjCmd
     (dummy  : in Tcl.ClientData;
      interp : in Tcl.Tcl_Interp;
      objc   : in Interfaces.C.int;
      objv   : in Tcl.Tcl_Obj_Array)
      return   Interfaces.C.int;
   pragma Import (C, Tcl_JoinObjCmd, "Tcl_JoinObjCmd");

   function Join
     (List       : in Tash_List;
      JoinString : in String := " ")
      return       String
   is
      Objc   : constant Interfaces.C.int := 3;
      Objv   : Tcl.Tcl_Obj_Array (1 .. Objc);
      Result : Interfaces.C.int;
      Interp : Tcl.Tcl_Interp;

   begin --  Join

      --  Use Tcl_JoinObjCmd to join the list
      --------------------------------------
      Objv (1) := Tash.To_Tcl_Obj ("join");
      Objv (2) := List.Obj;
      Objv (3) := Tash.To_Tcl_Obj (JoinString);
      Tash_Interp.Get (Interp);
      Tcl.Tcl_ResetResult (Interp);
      Result :=
         Tcl_JoinObjCmd
           (dummy  => System.Null_Address,
            interp => Interp,
            objc   => Objc,
            objv   => Objv);
      for I in  Objv (1 .. 3)'Range loop
         Tcl.Tcl_DecrRefCount (Objv (I));
      end loop;
      Tash_Interp.Assert (Interp, Result, List_Error'Identity);

      --  Get result from interpreter and return it
      --------------------------------------------
      declare
         JoinedResult : constant String :=
            CHelper.Value (Tcl.Tcl_GetStringResult (Interp));
      begin
         Tcl.Tcl_ResetResult (Interp);
         Tash_Interp.Release (Interp);
         return JoinedResult;
      end;

   end Join;

   function Slice
     (List  : in Tash_List;
      First : in Positive;
      Last  : in Natural)
      return  Tash_List
   is
      --
      Len      : Natural;
      New_List : Tash_List;
   begin --  Slice
      Len := Length (List);
      for I in  First .. Last loop
         exit when I > Len;
         Append (List => New_List, Element => Get_Element (List, I));
      end loop;
      return New_List;
   end Slice;

   function Tcl_LsortObjCmd
     (dummy  : in Tcl.ClientData;
      interp : in Tcl.Tcl_Interp;
      objc   : in Interfaces.C.int;
      objv   : in Tcl.Tcl_Obj_Array)
      return   Interfaces.C.int;
   pragma Import (C, Tcl_LsortObjCmd, "Tcl_LsortObjCmd");

   function Sort
     (List  : in Tash_List;
      Mode  : in Sort_Mode := SM_ASCII;
      Order : in Ordering  := Increasing)
      return  Tash_List
   is
      --
      Objc     : constant Interfaces.C.int := 4;
      Objv     : Tcl.Tcl_Obj_Array (1 .. Objc);
      Result   : Interfaces.C.int;
      New_List : Tash_List;
      Interp   : Tcl.Tcl_Interp;
   begin --  Sort
      if Length (List) <= 1 then
         return List;
      end if;
      Objv (1) := Tash.To_Tcl_Obj ("lsort");
      case Mode is
         when SM_ASCII =>
            Objv (2) := Tash.To_Tcl_Obj ("-ascii");
         when SM_Dictionary =>
            Objv (2) := Tash.To_Tcl_Obj ("-dictionary");
         when SM_Integer =>
            Objv (2) := Tash.To_Tcl_Obj ("-integer");
         when SM_Real =>
            Objv (2) := Tash.To_Tcl_Obj ("-real");
      end case;
      case Order is
         when Increasing =>
            Objv (3) := Tash.To_Tcl_Obj ("-increasing");
         when Decreasing =>
            Objv (3) := Tash.To_Tcl_Obj ("-decreasing");
      end case;
      Objv (4) := List.Obj;
      Tash_Interp.Get (Interp);
      Result :=
         Tcl_LsortObjCmd
           (dummy  => System.Null_Address,
            interp => Interp,
            objc   => Objc,
            objv   => Objv);
      Tash_Interp.Assert (Interp, Result, List_Error'Identity);
      New_List.Obj := Tcl.Tcl_DuplicateObj (Tcl.Tcl_GetObjResult (Interp));
      Tash_Interp.Release (Interp);
      Tcl.Tcl_IncrRefCount (New_List.Obj);
      return New_List;
   end Sort;

   function Length (List : in Tash_List) return Natural is
      --
      Len    : Natural;
      Interp : Tcl.Tcl_Interp;
   begin --  Length
      if Is_Null (List) then
         return 0;
      else
         Tash_Interp.Get (Interp);
         Len := Natural (Length (Interp, List.Obj));
         Tash_Interp.Release (Interp);
         return Len;
      end if;
   end Length;

   function Get_Element
     (List  : in Tash_List;
      Index : in Positive)
      return  String
   is
      --
      Interp : Tcl.Tcl_Interp;
   begin --  Get_Element
      if Is_Null (List) or else Index > Length (List) then
         raise List_Error;
      else
         Tash_Interp.Get (Interp);
         declare
            Obj : constant Tcl.Tcl_Obj :=
              Get_Element (Interp, List.Obj, Index);
            Len : aliased Interfaces.C.int;
         begin
            Tash_Interp.Release (Interp);
            return Tcl.Ada.Tcl_GetStringFromObj (Obj, Len'Access);
         end;
      end if;
   end Get_Element;

   function Get_Element
     (List  : in Tash_List;
      Index : in Positive)
      return  Tash_List
   is
      --
      Interp : Tcl.Tcl_Interp;
   begin --  Get_Element
      if Is_Null (List) or else Index > Length (List) then
         raise List_Error;
      else
         Tash_Interp.Get (Interp);
         declare
            Obj : constant Tcl.Tcl_Obj :=
              Get_Element (Interp, List.Obj, Index);
         begin
            Tash_Interp.Release (Interp);
            Tcl.Tcl_IncrRefCount (Obj);
            return (Ada.Finalization.Controlled with Obj => Obj);
         end;
      end if;
   end Get_Element;

   --  Determine type of list element
   ---------------------------------
   function Type_Of_List_Element
     (Obj : in Tcl.Tcl_Obj)
      return   String
   is
      --
      use type Tcl.Tcl_Obj;
   begin --  Type_Of_List_Element (
      if Obj = null then
         return "null";
      end if;
      if Obj = null then
         return "null";
      end if;
      return CHelper.Value (Tcl.Tcl_GetObjTypeName (Obj));
   end Type_Of_List_Element;

   function Element_Is_String
     (List  : in Tash_List;
      Index : in Positive)
      return  Boolean
   is
      --
      Interp : Tcl.Tcl_Interp;
      Result : Boolean;
   begin --  Element_Is_String
      Tash_Interp.Get (Interp);
      declare
         Type_Of_Element : constant String :=
            Type_Of_List_Element (Get_Element (Interp, List.Obj, Index));
      begin
         Result := Type_Of_Element /= "list" and
                   Type_Of_Element /= "int" and
                   Type_Of_Element /= "double";
      end;
      Tash_Interp.Release (Interp);
      return Result;
   exception
      when others =>
         return False;
   end Element_Is_String;

   function Element_Is_List
     (List  : in Tash_List;
      Index : in Positive)
      return  Boolean
   is
      --
      Interp : Tcl.Tcl_Interp;
      Result : Boolean;
   begin --  Element_Is_List
      Tash_Interp.Get (Interp);
      Result := Type_Of_List_Element (Get_Element (Interp, List.Obj, Index)) =
                "list";
      Tash_Interp.Release (Interp);
      return Result;
   exception
      when others =>
         return False;
   end Element_Is_List;

   function Head (List : in Tash_List) return String is
   begin --  Head
      return Get_Element (List, 1);
   end Head;

   function Head (List : in Tash_List) return Tash_List is
   begin --  Head
      return Get_Element (List, 1);
   end Head;

   function Tail (List : in Tash_List) return String is
      --
      Length : constant Natural := Tash.Lists.Length (List);
   begin --  Tail
      if Length = 0 then
         return "";
      else
         return Get_Element (List, Length);
      end if;
   end Tail;

   function Tail (List : in Tash_List) return Tash_List is
      --
      Length : constant Natural := Tash.Lists.Length (List);
   begin --  Tail
      if Length = 0 then
         raise List_Error;
      else
         return Get_Element (List, Length);
      end if;
   end Tail;

   procedure Append (List : in out Tash_List; Element : in String) is
      --
      Result : Interfaces.C.int;
      Interp : Tcl.Tcl_Interp;
   begin --  Append

      if Is_Null (List) then
         --  List is null, so create a new list
         -------------------------------------
         List := To_Tash_List ("{" & Element & "}");
         return;
      end if;

      Tash_Interp.Get (Interp);

      --  append Element
      -----------------
      if Tcl.Tcl_IsShared (List.Obj) = 1 then
         Tash_Interp.Raise_Exception
           (Interp  => Interp,
            E       => List_Error'Identity,
            Message => "List is shared");
      else
         Result :=
            Tcl.Tcl_ListObjAppendElement
              (interp  => Interp,
               listPtr => List.Obj,
               objPtr  => Tash.To_Tcl_Obj (Element));
         Tash_Interp.Assert (Interp, Result, List_Error'Identity);
      end if;

      Tash_Interp.Release (Interp);

   end Append;

   procedure Append_Elements
     (List     : in out Tash_List;
      Elements : in Tash_List)
   is

      Result : Interfaces.C.int;
      Interp : Tcl.Tcl_Interp;

   begin --  Append_Elements

      if Is_Null (Elements) then
         --  Element is null, so we do not append anything
         ------------------------------------------------
         return;
      end if;

      if Is_Null (List) then
         --  List is null, so create a new list
         -------------------------------------
         List := Copy (Elements);
         return;
      end if;

      Tash_Interp.Get (Interp);

      Result :=
         Tcl.Tcl_ListObjAppendList
           (interp      => Interp,
            listPtr     => List.Obj,
            elemListPtr => Elements.Obj);
      Tash_Interp.Assert (Interp, Result, List_Error'Identity);
      Tash_Interp.Release (Interp);

   end Append_Elements;

   procedure Append_List (List : in out Tash_List; Element : in Tash_List) is

      Result : Interfaces.C.int;
      Interp : Tcl.Tcl_Interp;

   begin --  Append_List

      if Is_Null (Element) then
         --  Element is null, so we do not append anything
         ------------------------------------------------
         return;
      end if;

      if Is_Null (List) then
         --  List is null, so create a new list
         -------------------------------------
         Append_List (List, Element);
         return;
      end if;

      Tash_Interp.Get (Interp);

      if Tcl.Tcl_IsShared (List.Obj) = 1 then
         Tash_Interp.Raise_Exception
           (Interp  => Interp,
            E       => List_Error'Identity,
            Message => "List is shared");
      else
         Result :=
            Tcl.Tcl_ListObjAppendElement
              (interp  => Interp,
               listPtr => List.Obj,
               objPtr  => Element.Obj);
         Tash_Interp.Assert (Interp, Result, List_Error'Identity);
      end if;
      Tash_Interp.Release (Interp);

   end Append_List;

   procedure Replace_Element
     (List    : in out Tash_List;
      Index   : in Positive;
      Element : in String)
   is
   begin --  Replace_Element
      Replace_Slice
        (List    => List,
         From    => Index,
         To      => Index,
         Element => Element);
   end Replace_Element;

   procedure Replace_Element_With_List
     (List    : in out Tash_List;
      Index   : in Positive;
      Element : in Tash_List)
   is
   begin --  Replace_Element_With_List
      Replace_Slice_With_List
        (List    => List,
         From    => Index,
         To      => Index,
         Element => Element);
   end Replace_Element_With_List;

   procedure Replace_Element_With_Elements
     (List     : in out Tash_List;
      Index    : in Positive;
      Elements : in Tash_List)
   is
   begin --  Replace_Element_With_Elements
      Replace_Slice_With_Elements
        (List     => List,
         From     => Index,
         To       => Index,
         Elements => Elements);
   end Replace_Element_With_Elements;

   procedure Replace_Slice
     (List    : in out Tash_List;
      From    : in Positive;
      To      : in Natural;
      Element : in String)
   is

      Result : Interfaces.C.int;
      Interp : Tcl.Tcl_Interp;

   begin --  Replace_Slice

      if Is_Null (List) then
         --  List is null, so create a new list
         -------------------------------------
         List := To_Tash_List ("{" & Element & "}");
         return;
      end if;

      Tash_Interp.Get (Interp);

      --  replace From..To elements with the string element
      ----------------------------------------------------
      declare
         Objv : Tcl.Tcl_Obj_Array (1 .. 1);
      begin
         Objv (1) := Tash.To_Tcl_Obj (Element);
         Result   :=
            Tcl.Tcl_ListObjReplace
              (interp  => Interp,
               listPtr => List.Obj,
               first   => Interfaces.C.int (From) - 1,
               count   => Interfaces.C.int (To - From) + 1,
               objc    => 1,
               objv    => Objv);
         Tash_Interp.Assert (Interp, Result, List_Error'Identity);
      end;

      Tash_Interp.Release (Interp);

   end Replace_Slice;

   procedure Replace_Slice_With_List
     (List    : in out Tash_List;
      From    : in Positive;
      To      : in Natural;
      Element : in Tash_List)
   is

      Result : Interfaces.C.int;
      Interp : Tcl.Tcl_Interp;

   begin --  Replace_Slice_With_List

      if Is_Null (Element) then
         --  Element is null, so this is the same
         --  as deleting From..To elements
         ---------------------------------------
         Delete_Slice (List => List, From => From, To => To);
         return;
      end if;

      if Is_Null (List) then
         --  Append the list Element as a single element
         ----------------------------------------------
         Append_List (List, Element);
         return;
      end if;

      Tash_Interp.Get (Interp);

      --  replace From..To elements with the list
      --  Element as a single element
      ------------------------------------------
      declare
         Objv : Tcl.Tcl_Obj_Array (1 .. 1);
      begin
         Objv (1) := Element.Obj;
         Result   :=
            Tcl.Tcl_ListObjReplace
              (interp  => Interp,
               listPtr => List.Obj,
               first   => Interfaces.C.int (From) - 1,
               count   => Interfaces.C.int (To - From) + 1,
               objc    => 1,
               objv    => Objv);
         Tash_Interp.Assert (Interp, Result, List_Error'Identity);
      end;

      Tash_Interp.Release (Interp);

   end Replace_Slice_With_List;

   procedure Replace_Slice_With_Elements
     (List     : in out Tash_List;
      From     : in Positive;
      To       : in Natural;
      Elements : in Tash_List)
   is

      Result : Interfaces.C.int;
      Interp : Tcl.Tcl_Interp;

   begin --  Replace_Slice_With_Elements

      if Is_Null (Elements) then
         --  Element is null, so this is the same
         --  as deleting From..To elements
         ---------------------------------------
         Delete_Slice (List => List, From => From, To => To);
         return;
      end if;

      if Is_Null (List) then
         --  Append each element of the list Elements
         -------------------------------------------
         Append_Elements (List, Elements);
         return;
      end if;

      Tash_Interp.Get (Interp);

      --  replace From..To elements with each
      --  member of the list Elements
      --------------------------------------
      declare
         Objc    : constant Interfaces.C.int := Length (Interp, Elements.Obj);
         Objv    : Tcl.Tcl_Obj_Array (1 .. Objc);
         Obj     : Tcl.Tcl_Obj;
      begin

         --  Create an array of Tcl objects from list Elements
         ----------------------------------------------------
         for I in  Objv'Range loop
            Obj :=
               Tash.Lists.Get_Element
                 (Interp => Interp,
                  List   => Elements.Obj,
                  Index  => Integer (I));
            Objv (I) := Obj;
         end loop;

         --  Replace the indicated elements with the array of objects
         -----------------------------------------------------------
         Result :=
            Tcl.Tcl_ListObjReplace
              (interp  => Interp,
               listPtr => List.Obj,
               first   => Interfaces.C.int (From) - 1,
               count   => Interfaces.C.int (To - From) + 1,
               objc    => Objc,
               objv    => Objv);
         Tash_Interp.Assert (Interp, Result, List_Error'Identity);
      end;

      Tash_Interp.Release (Interp);

   end Replace_Slice_With_Elements;

   procedure Insert
     (List    : in out Tash_List;
      Index   : in Positive;
      Element : in String)
   is
   begin --  Insert
      Replace_Slice
        (List    => List,
         From    => Index,
         To      => Index - 1,
         Element => Element);
   end Insert;

   procedure Insert_List
     (List    : in out Tash_List;
      Index   : in Positive;
      Element : in Tash_List)
   is
   begin --  Insert_List
      Replace_Slice_With_List
        (List    => List,
         From    => Index,
         To      => Index - 1,
         Element => Element);
   end Insert_List;

   procedure Insert_Elements
     (List     : in out Tash_List;
      Index    : in Positive;
      Elements : in Tash_List)
   is
   begin --  Insert_Elements
      Replace_Slice_With_Elements
        (List     => List,
         From     => Index,
         To       => Index - 1,
         Elements => Elements);
   end Insert_Elements;

   procedure Delete_Element (List : in out Tash_List; Index : in Positive) is
      --
      Result : Interfaces.C.int;
      Objv   : Tcl.Tcl_Obj_Array (1 .. 0);
      Interp : Tcl.Tcl_Interp;
   begin --  Delete_Element
      if Is_Null (List) then
         return;
      elsif Index > Length (List) then
         return;
      else
         Tash_Interp.Get (Interp);
         Result :=
            Tcl.Tcl_ListObjReplace
              (interp  => Interp,
               listPtr => List.Obj,
               first   => Interfaces.C.int (Index) - 1,
               count   => 1,
               objc    => Interfaces.C.int (0),
               objv    => Objv);
         Tash_Interp.Assert (Interp, Result, List_Error'Identity);
         Tash_Interp.Release (Interp);
      end if;
   end Delete_Element;

   procedure Delete_Slice
     (List : in out Tash_List;
      From : in Positive;
      To   : in Natural)
   is
      --
      Length : Natural;
      Last   : Natural := To;
      Result : Interfaces.C.int;
      Objv   : Tcl.Tcl_Obj_Array (1 .. 0);
      Interp : Tcl.Tcl_Interp;
   begin --  Delete_Slice
      if Is_Null (List) then
         return;
      end if;
      Length := Tash.Lists.Length (List);
      if From > Length then
         return;
      elsif From > Last then
         return;
      else
         if Last > Length then
            Last := Length;
         end if;
         Tash_Interp.Get (Interp);
         Result :=
            Tcl.Tcl_ListObjReplace
              (interp  => Interp,
               listPtr => List.Obj,
               first   => Interfaces.C.int (From) - 1,
               count   => Interfaces.C.int (Last - From) + 1,
               objc    => Interfaces.C.int (0),
               objv    => Objv);
         Tash_Interp.Assert (Interp, Result, List_Error'Identity);
         Tash_Interp.Release (Interp);
      end if;
   end Delete_Slice;

   procedure Push (List : in out Tash_List; Element : in String) is
   begin --  Push
      Replace_Slice (List => List, From => 1, To => 0, Element => Element);
   end Push;

   procedure Push_List (List : in out Tash_List; Element : in Tash_List) is
   begin --  Push_List
      Replace_Slice_With_List
        (List    => List,
         From    => 1,
         To      => 0,
         Element => Element);
   end Push_List;

   procedure Push_Elements
     (List     : in out Tash_List;
      Elements : in Tash_List)
   is
   begin --  Push_Elements
      Replace_Slice_With_Elements
        (List     => List,
         From     => 1,
         To       => 0,
         Elements => Elements);
   end Push_Elements;

   procedure Pop (List : in out Tash_List) is
   begin --  Pop
      if Is_Null (List) then
         return;
      end if;
      Delete_Element (List => List, Index => 1);
   end Pop;

   package body Generic_Integer_Lists is

      function To_Tcl_Obj (Num : in Item) return Tcl.Tcl_Obj;
      function To_Tcl_Obj (Num : in Item) return Tcl.Tcl_Obj is
         New_Obj : Tcl.Tcl_Obj;
      begin --  To_Tcl_Obj
         New_Obj := Tcl.Tcl_NewIntObj (Interfaces.C.int (Num));
         Tcl.Tcl_IncrRefCount (New_Obj);
         return New_Obj;
      end To_Tcl_Obj;

      function To_Tash_List (Num : in Item) return Tash_List is
         New_List : Tash_List;
         Objv     : Tcl.Tcl_Obj_Array (1 .. 1);
         Result   : Interfaces.C.int;
         Interp   : Tcl.Tcl_Interp;

      begin --  To_Tash_List

         --  Initialize New_List as an empty list
         ---------------------------------------
         New_List.Obj := Tcl.Tcl_NewListObj (objc => 0, objv => Objv);
         Tcl.Tcl_IncrRefCount (New_List.Obj);

         --  Append the integer element to New_List
         -----------------------------------------
         Tash_Interp.Get (Interp);
         Result :=
            Tcl.Tcl_ListObjAppendElement
              (interp  => Interp,
               listPtr => New_List.Obj,
               objPtr  => To_Tcl_Obj (Num));
         Tash_Interp.Assert (Interp, Result, List_Error'Identity);
         Tash_Interp.Release (Interp);

         return New_List;

      end To_Tash_List;

      function "+" (Num : in Item) return Tash_List is
      begin --  "+"
         return To_Tash_List (Num);
      end "+";
      pragma Inline ("+");

      function "-" (Num : in Item) return Tash_List is
      begin --  "-"
         return To_Tash_List (-Num);
      end "-";
      pragma Inline ("-");

      function "&" (Left : in Item; Right : in Tash_List) return Tash_List is
         --
         New_List : Tash_List;
      begin --  "&"
         New_List := To_Tash_List (Left);
         Append_Elements (List => New_List, Elements => Right);
         return New_List;
      end "&";

      function "&" (Left : in Tash_List; Right : in Item) return Tash_List is
         --
         New_List : Tash_List;
      begin --  "&"
         New_List := Copy (Left);
         Append (List => New_List, Element => Right);
         return New_List;
      end "&";

      function Get_Element
        (List  : in Tash_List;
         Index : in Positive)
         return  Item
      is
         --
         Interp : Tcl.Tcl_Interp;
      begin --  Get_Element
         if Is_Null (List) or else Index > Length (List) then
            raise List_Error;
         else
            Tash_Interp.Get (Interp);
            declare
               Obj    : constant Tcl.Tcl_Obj :=
                  Get_Element (Interp, List.Obj, Index);
               Value  : aliased Interfaces.C.int;
               Result : Interfaces.C.int;
               pragma Unreferenced (Result);  -- XXX why not?
            begin
               if Type_Of_List_Element (Obj) /= "int" then
                  Tash_Interp.Raise_Exception
                    (Interp  => Interp,
                     E       => Constraint_Error'Identity,
                     Message => "Element is not an integer");
               end if;
               Result :=
                  Tcl.Tcl_GetIntFromObj
                    (interp => Interp,
                     objPtr => Obj,
                     intPtr => Value'Access);
               Tash_Interp.Release (Interp);
               return Item (Value);
            end;
         end if;
      end Get_Element;

      function Element_Is_Integer
        (List  : in Tash_List;
         Index : in Positive)
         return  Boolean
      is
         --
         Interp : Tcl.Tcl_Interp;
         Result : Boolean;
      begin --  Element_Is_Integer
         Tash_Interp.Get (Interp);
         Result :=
           Type_Of_List_Element (Get_Element (Interp, List.Obj, Index)) =
           "int";
         Tash_Interp.Release (Interp);
         return Result;
      exception
         when others =>
            return False;
      end Element_Is_Integer;

      function Head (List : in Tash_List) return Item is
      begin --  Head
         return Get_Element (List, 1);
      end Head;

      function Tail (List : in Tash_List) return Item is
         --
         Length : constant Natural := Tash.Lists.Length (List);
      begin --  Tail
         if Length = 0 then
            return 0;
         else
            return Get_Element (List, Length);
         end if;
      end Tail;

      procedure Append (List : in out Tash_List; Element : in Item) is
         --
         Result : Interfaces.C.int;
         Interp : Tcl.Tcl_Interp;
      begin --  Append

         if Is_Null (List) then
            --  List is null, so create a new list
            -------------------------------------
            List := To_Tash_List (Element);
            return;
         end if;

         Tash_Interp.Get (Interp);

         --  append Element
         -----------------
         if Tcl.Tcl_IsShared (List.Obj) = 1 then
            Tash_Interp.Raise_Exception
              (Interp  => Interp,
               E       => List_Error'Identity,
               Message => "List is shared");
         else
            Result :=
               Tcl.Tcl_ListObjAppendElement
                 (interp  => Interp,
                  listPtr => List.Obj,
                  objPtr  => To_Tcl_Obj (Element));
            Tash_Interp.Assert (Interp, Result, List_Error'Identity);
         end if;

         Tash_Interp.Release (Interp);

      end Append;

      procedure Replace_Element
        (List    : in out Tash_List;
         Index   : in Positive;
         Element : in Item)
      is
      begin --  Replace_Element
         Replace_Slice
           (List    => List,
            From    => Index,
            To      => Index,
            Element => Element);
      end Replace_Element;

      procedure Replace_Slice
        (List    : in out Tash_List;
         From    : in Positive;
         To      : in Natural;
         Element : in Item)
      is

         Result : Interfaces.C.int;
         Interp : Tcl.Tcl_Interp;

      begin --  Replace_Slice

         if Is_Null (List) then
            --  List is null, so create a new list
            -------------------------------------
            List := To_Tash_List (Element);
            return;
         end if;

         Tash_Interp.Get (Interp);

         --  replace From..To elements with the integer element
         -----------------------------------------------------
         declare
            Objv : Tcl.Tcl_Obj_Array (1 .. 1);
         begin
            Objv (1) := To_Tcl_Obj (Element);
            Result   :=
               Tcl.Tcl_ListObjReplace
                 (interp  => Interp,
                  listPtr => List.Obj,
                  first   => Interfaces.C.int (From) - 1,
                  count   => Interfaces.C.int (To - From) + 1,
                  objc    => 1,
                  objv    => Objv);
            Tash_Interp.Assert (Interp, Result, List_Error'Identity);
         end;

         Tash_Interp.Release (Interp);

      end Replace_Slice;

      procedure Insert
        (List    : in out Tash_List;
         Index   : in Positive;
         Element : in Item)
      is
      begin --  Insert
         Replace_Slice
           (List    => List,
            From    => Index,
            To      => Index - 1,
            Element => Element);
      end Insert;

      procedure Push (List : in out Tash_List; Element : in Item) is
      begin --  Push
         Replace_Slice (List => List, From => 1, To => 0, Element => Element);
      end Push;

   end Generic_Integer_Lists;

   package body Generic_Float_Lists is

      function To_Tcl_Obj (Num : in Item) return Tcl.Tcl_Obj;
      function To_Tcl_Obj (Num : in Item) return Tcl.Tcl_Obj is
         New_Obj : Tcl.Tcl_Obj;
      begin --  To_Tcl_Obj
         New_Obj := Tcl.Tcl_NewDoubleObj (Interfaces.C.double (Num));
         Tcl.Tcl_IncrRefCount (New_Obj);
         return New_Obj;
      end To_Tcl_Obj;

      function To_Tash_List (Num : in Item) return Tash_List is
         New_List : Tash_List;
         Objv     : Tcl.Tcl_Obj_Array (1 .. 1);
         Result   : Interfaces.C.int;
         Interp   : Tcl.Tcl_Interp;

      begin --  To_Tash_List

         --  Initialize New_List as an empty list
         ---------------------------------------
         New_List.Obj := Tcl.Tcl_NewListObj (objc => 0, objv => Objv);
         Tcl.Tcl_IncrRefCount (New_List.Obj);

         --  Append the float element to New_List
         -----------------------------------------
         Tash_Interp.Get (Interp);
         Result :=
            Tcl.Tcl_ListObjAppendElement
              (interp  => Interp,
               listPtr => New_List.Obj,
               objPtr  => To_Tcl_Obj (Num));
         Tash_Interp.Assert (Interp, Result, List_Error'Identity);
         Tash_Interp.Release (Interp);

         return New_List;

      end To_Tash_List;

      function "+" (Num : in Item) return Tash_List is
      begin --  "+"
         return To_Tash_List (Num);
      end "+";
      pragma Inline ("+");

      function "-" (Num : in Item) return Tash_List is
      begin --  "-"
         return To_Tash_List (-Num);
      end "-";
      pragma Inline ("-");

      function "&" (Left : in Item; Right : in Tash_List) return Tash_List is
         --
         New_List : Tash_List;
      begin --  "&"
         New_List := To_Tash_List (Left);
         Append_Elements (List => New_List, Elements => Right);
         return New_List;
      end "&";

      function "&" (Left : in Tash_List; Right : in Item) return Tash_List is
         --
         New_List : Tash_List;
      begin --  "&"
         New_List := Copy (Left);
         Append (List => New_List, Element => Right);
         return New_List;
      end "&";

      function Get_Element
        (List  : in Tash_List;
         Index : in Positive)
         return  Item
      is
         --
         Interp : Tcl.Tcl_Interp;
      begin --  Get_Element
         if Is_Null (List) or else Index > Length (List) then
            raise List_Error;
         else
            Tash_Interp.Get (Interp);
            declare
               Obj    : constant Tcl.Tcl_Obj :=
                  Get_Element (Interp, List.Obj, Index);
               Value  : aliased Interfaces.C.double;
               Result : Interfaces.C.int;
               pragma Unreferenced (Result);  --  XXX why not?
            begin
               if Type_Of_List_Element (Obj) /= "double" then
                  Tash_Interp.Raise_Exception
                    (Interp  => Interp,
                     E       => Constraint_Error'Identity,
                     Message => "Element is not a float");
               end if;
               Result :=
                  Tcl.Tcl_GetDoubleFromObj
                    (interp    => Interp,
                     objPtr    => Obj,
                     doublePtr => Value'Access);
               Tash_Interp.Release (Interp);
               return Item (Value);
            end;
         end if;
      end Get_Element;

      function Element_Is_Float
        (List  : in Tash_List;
         Index : in Positive)
         return  Boolean
      is
         --
         Interp : Tcl.Tcl_Interp;
         Result : Boolean;
      begin --  Element_Is_Float
         Tash_Interp.Get (Interp);
         Result :=
           Type_Of_List_Element (Get_Element (Interp, List.Obj, Index)) =
           "double";
         Tash_Interp.Release (Interp);
         return Result;
      exception
         when others =>
            return False;
      end Element_Is_Float;

      function Head (List : in Tash_List) return Item is
      begin --  Head
         return Get_Element (List, 1);
      end Head;

      function Tail (List : in Tash_List) return Item is
         --
         Length : constant Natural := Tash.Lists.Length (List);
      begin --  Tail
         if Length = 0 then
            return 0.0;
         else
            return Get_Element (List, Length);
         end if;
      end Tail;

      procedure Append (List : in out Tash_List; Element : in Item) is
         --
         Result : Interfaces.C.int;
         Interp : Tcl.Tcl_Interp;
      begin --  Append

         if Is_Null (List) then
            --  List is null, so create a new list
            -------------------------------------
            List := To_Tash_List (Element);
            return;
         end if;

         Tash_Interp.Get (Interp);

         --  append Element
         -----------------
         if Tcl.Tcl_IsShared (List.Obj) = 1 then
            Tash_Interp.Raise_Exception
              (Interp  => Interp,
               E       => List_Error'Identity,
               Message => "List is shared");
         else
            Result :=
               Tcl.Tcl_ListObjAppendElement
                 (interp  => Interp,
                  listPtr => List.Obj,
                  objPtr  => To_Tcl_Obj (Element));
            Tash_Interp.Assert (Interp, Result, List_Error'Identity);
         end if;

         Tash_Interp.Release (Interp);

      end Append;

      procedure Replace_Element
        (List    : in out Tash_List;
         Index   : in Positive;
         Element : in Item)
      is
      begin --  Replace_Element
         Replace_Slice
           (List    => List,
            From    => Index,
            To      => Index,
            Element => Element);
      end Replace_Element;

      procedure Replace_Slice
        (List    : in out Tash_List;
         From    : in Positive;
         To      : in Natural;
         Element : in Item)
      is

         Result : Interfaces.C.int;
         Interp : Tcl.Tcl_Interp;

      begin --  Replace_Slice

         if Is_Null (List) then
            --  List is null, so create a new list
            -------------------------------------
            List := To_Tash_List (Element);
            return;
         end if;

         Tash_Interp.Get (Interp);

         --  replace From..To elements with the float element
         -----------------------------------------------------
         declare
            Objv : Tcl.Tcl_Obj_Array (1 .. 1);
         begin
            Objv (1) := To_Tcl_Obj (Element);
            Result   :=
               Tcl.Tcl_ListObjReplace
                 (interp  => Interp,
                  listPtr => List.Obj,
                  first   => Interfaces.C.int (From) - 1,
                  count   => Interfaces.C.int (To - From) + 1,
                  objc    => 1,
                  objv    => Objv);
            Tash_Interp.Assert (Interp, Result, List_Error'Identity);
         end;

         Tash_Interp.Release (Interp);

      end Replace_Slice;

      procedure Insert
        (List    : in out Tash_List;
         Index   : in Positive;
         Element : in Item)
      is
      begin --  Insert
         Replace_Slice
           (List    => List,
            From    => Index,
            To      => Index - 1,
            Element => Element);
      end Insert;

      procedure Push (List : in out Tash_List; Element : in Item) is
      begin --  Push
         Replace_Slice (List => List, From => 1, To => 0, Element => Element);
      end Push;

   end Generic_Float_Lists;

   function "=" (Left : in Tash_List; Right : in Tash_List) return Boolean is
   begin --  "="
      return To_String (Left) = To_String (Right);
   end "=";

   function "<" (Left : in Tash_List; Right : in Tash_List) return Boolean is
   begin --  "<"
      return To_String (Left) < To_String (Right);
   end "<";

   function "<=" (Left : in Tash_List; Right : in Tash_List) return Boolean is
   begin --  "<="
      return To_String (Left) <= To_String (Right);
   end "<=";

   function ">" (Left : in Tash_List; Right : in Tash_List) return Boolean is
   begin --  ">"
      return To_String (Left) > To_String (Right);
   end ">";

   function ">=" (Left : in Tash_List; Right : in Tash_List) return Boolean is
   begin --  ">="
      return To_String (Left) >= To_String (Right);
   end ">=";

   function Tcl_FormatObjCmd
     (Dummy  : in Tcl.ClientData;
      Interp : in Tcl.Tcl_Interp;
      objc   : in Interfaces.C.int;
      objv   : in Tcl.Tcl_Obj_Array)
      return   Interfaces.C.int;
   pragma Import (C, Tcl_FormatObjCmd, "Tcl_FormatObjCmd");

   function Format
     (FormatString : in String;
      Values       : in Tash_List)
      return         String
   is
      Result : Interfaces.C.int;
      Interp : Tcl.Tcl_Interp;

   begin --  Format

      Tash_Interp.Get (Interp);

      declare
         Objc    : aliased constant Interfaces.C.int :=
            Length (Interp, Values.Obj) + 2;
         Objv    : Tcl.Tcl_Obj_Array (1 .. Objc);
         Obj     : Tcl.Tcl_Obj;
      begin
         Objv (1) := Tash.To_Tcl_Obj ("format");
         Objv (2) := Tash.To_Tcl_Obj (FormatString);

         --  Create an array of Tcl objects from list Values
         --------------------------------------------------
         for I in  1 .. Length (Interp, Values.Obj) loop
            Obj :=
               Tash.Lists.Get_Element
                 (Interp => Interp,
                  List   => Values.Obj,
                  Index  => Integer (I));
            Objv (I + 2) := Obj;
         end loop;

      --  Call Tcl Format command
      --------------------------
         begin
            Tcl.Tcl_ResetResult (Interp);
            Result :=
               Tcl_FormatObjCmd
                 (Dummy  => System.Null_Address,
                  Interp => Interp,
                  objc   => Objc,
                  objv   => Objv);
         exception
            when others =>
               for I in  Objv (1 .. 2)'Range loop
                  Tcl.Tcl_DecrRefCount (Objv (I));
               end loop;
               Tash_Interp.Assert
                 (Interp,
                  Tcl.TCL_ERROR,
                  Format_Error'Identity);
         end;

         --  Decrement the reference counts of Objv(1..2) because this
         --  is how we tell Tcl we don't need this memory any more.
         ------------------------------------------------------------
         for I in  Objv (1 .. 2)'Range loop
            Tcl.Tcl_DecrRefCount (Objv (I));
         end loop;

         Tash_Interp.Assert (Interp, Result, Format_Error'Identity);

         --  Get result from interpreter and return it
         --------------------------------------------
         declare
            StringResult : constant String :=
               CHelper.Value (Tcl.Tcl_GetStringResult (Interp));
         begin
            Tcl.Tcl_ResetResult (Interp);
            Tash_Interp.Release (Interp);
            return StringResult;
         end;

      end;

   end Format;

   function Internal_Rep (List : in Tash_List) return String is
      Image  : Ada.Strings.Unbounded.Unbounded_String;
      Interp : Tcl.Tcl_Interp;

   begin --  Internal_Rep

      --  Get the internal representation of the list itself
      -----------------------------------------------------
      Image :=
         Ada.Strings.Unbounded.To_Unbounded_String
           (Tash.Internal_Rep (Tash_Object (List)));

      --  Append the internal representation of each of the
      --  elements of the list.  Note that we use the low-level
      --  internal rep of the Tcl object, not the Tash Object.
      --  This is because if we declare Elem as Tash_Object'Class,
      --  we'll increment the reference count and show a
      --  confusingly high reference count.
      -----------------------------------------------------------
      Tash_Interp.Get (Interp);
      for I in  1 .. Integer (Length (Interp, List.Obj)) loop
         declare
            I_Image : String (1 .. 8);
            Elem    : constant Tcl.Tcl_Obj :=
               Tash.Lists.Get_Element (Interp, List.Obj, I);
         begin
            Ada.Integer_Text_IO.Put (I_Image, I);
            Ada.Strings.Unbounded.Append
              (Image,
               ASCII.LF & I_Image & ": " & Tash.Internal_Rep (Elem));
         end;
      end loop;
      Tash_Interp.Release (Interp);

      return Ada.Strings.Unbounded.To_String (Image);

   end Internal_Rep;

end Tash.Lists;