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 autolearn=unavailable autolearn_force=no version=3.4.4 Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!feeder.eternal-september.org!gandalf.srv.welterde.de!news.jacob-sparre.dk!franka.jacob-sparre.dk!pnx.dk!.POSTED.rrsoftware.com!not-for-mail From: "Randy Brukardt" Newsgroups: comp.lang.ada Subject: Re: Ada-Oriented GUI Date: Wed, 21 Mar 2018 17:40:29 -0500 Organization: JSA Research & Innovation Message-ID: References: <7789c58e-ca36-44a2-8818-009eface4a3e@googlegroups.com> <926b83eb-6cce-417d-9c17-df6be2bc98d5@googlegroups.com> <2d1f392f-e747-42aa-8938-d6538d5b9934@googlegroups.com> <7e240e01-f6e2-40dc-a7da-d430d1c92f67@googlegroups.com> <3ff0cd7d-c3c5-4b03-a686-3cb21f3fbfa6@googlegroups.com> Injection-Date: Wed, 21 Mar 2018 22:40:31 -0000 (UTC) Injection-Info: franka.jacob-sparre.dk; posting-host="rrsoftware.com:24.196.82.226"; logging-data="29422"; mail-complaints-to="news@jacob-sparre.dk" X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2900.5931 X-RFC2646: Format=Flowed; Original X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.7246 Xref: reader02.eternal-september.org comp.lang.ada:51117 Date: 2018-03-21T17:40:29-05:00 List-Id: "Shark8" wrote in message news:3ff0cd7d-c3c5-4b03-a686-3cb21f3fbfa6@googlegroups.com... On Wednesday, March 21, 2018 at 12:43:51 PM UTC-6, briot.e...@gmail.com wrote: ... >> For me, the biggest obstacles were the need to instantiate a lot of >> generics, >> because the streams are associated with data, then get combined to create >> other types of data, and so on. So we ended up with a soup of >> instantiations (on the user side), which I had not quite managed to tame. > >I had an idea about that, though even if I submit it now it wouldn't be put >in > Ada 2020 -- but anyway, the idea was a sort of automatic instantiation. Actually, there is an open AI on automatic instantiation, so this idea would get added to that AI. And this idea is *WAAAYYY* more sensible than that one, so I'd hope it was in the hopper. OTOH, we're in the process of prioritizing work for Ada 2020, and that is one of many AIs that might be on the chopping block (we have something like 60 open AIs and time to handle maybe 20, so something has to go). This is a long-winded way of saying that you should submit it, there's some chance it might be acted on but it's hard to say how much. ... >where the USE would instantiate Swap in Sort's instantiation; Swap itself >could >be reached via Sort.Swap and used in that manner, thereby cleaning up a lot >of >one-off instantiations. Makes sense to me. Randy.