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=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,c31acc89d296bc62 X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!news4.google.com!feeder2.cambriumusenet.nl!feed.tweaknews.nl!194.134.4.91.MISMATCH!news2.euro.net!feeder.news-service.com!85.214.198.2.MISMATCH!eternal-september.org!.POSTED!not-for-mail From: Simon Wright Newsgroups: comp.lang.ada Subject: Re: Design problem: generic package vs tagged subtype Date: Thu, 01 Jul 2010 20:28:36 +0100 Organization: A noiseless patient Spider Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Injection-Date: Thu, 1 Jul 2010 19:28:36 +0000 (UTC) Injection-Info: mx02.eternal-september.org; posting-host="KCXegvZb5vh43D+f3BR6Ew"; logging-data="20873"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18V19aLSHLgzjxPvo+KTKi9sjyRlzNKsZk=" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (darwin) Cancel-Lock: sha1:W/ACWPB+d1dKySkb5kwUkUAMWhQ= sha1:+BhBmiq2z73nvLCos68ErqLgQvE= Xref: g2news2.google.com comp.lang.ada:13077 Date: 2010-07-01T20:28:36+01:00 List-Id: "Jeffrey R. Carter" writes: > I don't really care which of these I write. But I'd much rather READ > > Send (Message => ...); > > than > > Send (M => ...); -- Meaningless Quite often (IMO) there's no need to use named association *for the first parameter* in a case like this. Send ("hello world", To => Server); for example.