Path: utzoo!mnetor!uunet!seismo!sundc!hqda-ai!logi-dc!joe From: joe@logi-dc.UUCP (Joe Dzikiewicz) Newsgroups: comp.lang.c Subject: Re: The D Programming Language Message-ID: <105@logi-dc.UUCP> Date: 29 Feb 88 17:30:49 GMT Organization: Logicon, Inc., Fairfax, Va., USA Lines: 23 Summary: Yet another new operator... Here's an operator I would like to see. It involves structure pointers... struct a { struct a *a_ptr; ... } *ptr_to_a; ... ptr_to_a => a_ptr; This would be equivalent to: ptr_to_a = ptr_to_a->a_ptr; This would not allow you to do anything you can't do anyway, but it would reduce the needed keystrokes (and isn't that what 'C' is all about anyway? :-). Joe Dzikiewicz joe@logi-dc