From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM autolearn=unavailable autolearn_force=no version=3.4.4 X-Received: by 10.36.74.5 with SMTP id k5mr22250170itb.30.1517359447654; Tue, 30 Jan 2018 16:44:07 -0800 (PST) X-Received: by 10.157.38.67 with SMTP id a61mr304026otb.7.1517359447171; Tue, 30 Jan 2018 16:44:07 -0800 (PST) Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!feeder.eternal-september.org!border1.nntp.ams1.giganews.com!nntp.giganews.com!peer01.ams1!peer.ams1.xlned.com!news.xlned.com!peer02.am4!peer.am4.highwinds-media.com!peer03.iad!feed-me.highwinds-media.com!news.highwinds-media.com!g80no1460759itg.0!news-out.google.com!b73ni5523ita.0!nntp.google.com!g80no1460754itg.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Tue, 30 Jan 2018 16:44:07 -0800 (PST) Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=2a01:e35:2ecd:88c0:2ca7:86cb:394c:f39c; posting-account=O1Kt4QoAAABKYAjrg-cGai_vZLnN2LEw NNTP-Posting-Host: 2a01:e35:2ecd:88c0:2ca7:86cb:394c:f39c User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <575826a1-c983-49aa-95e2-54048f6b7b5b@googlegroups.com> Subject: [ANN] List_Image v0.2.0 From: Lionel Draghi Injection-Date: Wed, 31 Jan 2018 00:44:07 +0000 Content-Type: text/plain; charset="UTF-8" X-Received-Body-CRC: 3891747404 X-Received-Bytes: 1928 Xref: reader02.eternal-september.org comp.lang.ada:50219 Date: 2018-01-30T16:44:07-08:00 List-Id: List_Image is a small helper to print the content of Ada predefined containers, available here : https://github.com/LionelDraghi/List_Image The Image generic function returns the image of containers content in various format, customizable at instantiation time, from the simple A, B, C or [A, B, C] or - A - B - C or A, B and C or more complex format like html : Format may differ for empty list and list containing a single item. So, the same instantiation of the function may return : - "No test failed" if the list is empty - "Test test_1 fails" if the list contains "test_1" - "Tests test_1 and test_2 fail" if the list contains "test_1" and "test_2" Lionel