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.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,2078dddcdcd8d83 X-Google-Attributes: gid103376,public From: "Nick Roberts" Subject: Re: assign help!! Date: 1997/05/14 Message-ID: <01bc6008$bbfdab60$LocalHost@xhv46.dial.pipex.com>#1/1 X-Deja-AN: 241382145 References: <5kjvcv$evt@news.cis.nctu.edu.tw> <5kn8ko$jcc@top.mitre.org> <1997May7.201035.2439@nosc.mil> Organization: UUNet PIPEX server (post doesn't reflect views of UUNet PIPEX) Newsgroups: comp.lang.ada Date: 1997-05-14T00:00:00+00:00 List-Id: Simon Wright wrote in article ... > One point on derived (tagged) types; following someone else's posting > on various types of Track, I find it helps to use the plural form in > the package name and the undecorated singular for the type, eg > > package Tracks is > type Track is abstract tagged private; > .. > > package Friendly_Tracks is > type Track is new Tracks.Track with private; > .. > > package Enemy_Tracks is > type Track is new Tracks.Track with private; > .. I find "ing" and "tion" handy: package Tracking is ... package Friendly_Tracking is ... package Enemy_Tracking is ... package Stacking is ... package Queuing is ... package Text_Compression is ... package Packet_Encoding is ... and so on. Nick.