comp.lang.ada
 help / color / mirror / Atom feed
From: doylep@ecf.toronto.edu (Patrick Doyle)
Subject: Re: Software landmines (loops)
Date: 1998/10/11
Date: 1998-10-11T00:00:00+00:00	[thread overview]
Message-ID: <F0n3Ko.76A@ecf.toronto.edu> (raw)
In-Reply-To: m31zpq4pim.fsf@mheaney.ni.ne <m3af36wtwh.fsf@mheaney.ni.net

In article <m3af36wtwh.fsf@mheaney.ni.net>,
Matthew Heaney  <matthew_heaney@acm.org> wrote:
>
>There are two ways to turn this into a loop.  The most natural way
>(according to me, and Soloway et al) is like this:
>
>loop
>   read N
>   exit when N = 0
>   process N
>end loop
>
>This describes the enumerated list of actions above.  The "classic" way
>is like this:
>
>read N
>
>while N /= 0 loop
>   process N
>   read N
>end loop
>
> [...]
>
>I argue that the middle-exit construction shown above satisfies
>Dijkstra's "restricted topology" in the sense that a reader of the
>(static) program text can easily understand what happens at run-time.

You make some good points.

I'd just like to add that another desirable property of a loop is
that all exit conditions are concentrated in one place.  This,
in combination with my own preference for the first form (above)
rather than the second (which repeats the "read N" part), led
me, a while back, to propose a loop syntax like this:

until exit{end_of_file} loop
  read N
  if N = 0 then exit(end_of_file);
  process N
end loop

This has the advantages of your first method with the added benefit
that the exit conditions are concentrated in one place, for easy
comprehension.  

Clearly, this could already be done without special syntax simply by
declaring a boolean flag and then, perhaps, relying on the compiler
to optimize it away.  However, it would be nice to be able to express
to the compiler that you don't want a flag; you are simply trying
to describe the flow of control through the loop.

Another point is that it is important for the program to be able to 
discern the reason for loop termination.  You should be able to say "if
end_of_file" after executing the loop.  However, again, this should
not be translated into a boolean flag test.  Again it's just
describing the flow of control.

What I'm trying to say is that we should be guaranteed that
the compiler will turn this:

	loop
	  A;
	  if B then exit(condition1);
	  C;
	until 
	  exit{condition1} or condition2 
	end loop

	if condition1 then
	  D;
	end if
	E;


...into something like this:

top:	A
	if !B then goto after
	D
	goto bottom
after:	C
	if !condition2 then goto top
bottom:	E

See what I'm getting at?  The source code is not trying to
express how the loop should be implemented.  It's trying to
express the flow control in a human-friendly form, and the
programmer should be confident that it will be implemented
in a machine-friendly form.  After all, isn't that the
point of a compiled language?  :-)

I know that most compilers do simple optimizations like this
anyway.  I'm just trying to differentiate between my mental image
of exit conditions and simple boolean flags.

 -PD
-- 
--
Patrick Doyle
doylep@ecf.toronto.edu




  parent reply	other threads:[~1998-10-11  0:00 UTC|newest]

Thread overview: 820+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1998-08-06  0:00 Why C++ is successful Robert Dewar
1998-08-07  0:00 ` harald.mueller
1998-08-07  0:00   ` Robert Dewar
1998-08-08  0:00     ` Patrick Logan
1998-08-07  0:00   ` Brian Rogoff
1998-08-07  0:00     ` Timothy Welch
1998-08-08  0:00       ` Robert Dewar
1998-08-08  0:00         ` Phlip
1998-08-08  0:00         ` Larry Elmore
1998-08-08  0:00         ` Jeffrey C. Dege
1998-08-08  0:00           ` Patrick Logan
1998-08-10  0:00           ` Laurent GUERBY
1998-08-12  0:00             ` Andy Ward
1998-08-12  0:00               ` Matt Kennel
1998-08-14  0:00               ` Robert Dewar
1998-08-13  0:00                 ` nasser
1998-08-19  0:00                   ` Don Harrison
1998-08-14  0:00                 ` Patrick Doyle
1998-08-16  0:00                   ` Robert Dewar
1998-08-16  0:00                     ` Patrick Doyle
1998-08-18  0:00                     ` Martin Tom Brown
1998-08-16  0:00                   ` Robert Dewar
1998-08-16  0:00                     ` Patrick Doyle
1998-08-14  0:00                 ` Software landmines (was: Why C++ is successful) dennison
1998-08-15  0:00                   ` Thaddeus L. Olczyk
1998-08-16  0:00                   ` Robert Dewar
1998-08-17  0:00                     ` dennison
1998-08-18  0:00                       ` adam
1998-08-19  0:00                         ` Tucker Taft
1998-08-19  0:00                           ` adam
1998-08-19  0:00                       ` ell
1998-08-19  0:00                         ` adam
1998-08-19  0:00                           ` Dan Higdon
1998-08-20  0:00                             ` adam
1998-08-20  0:00                               ` Software landmines (loops) Nick Leaton
1998-08-30  0:00                                 ` Matthew Heaney
1998-08-30  0:00                                   ` Robert Martin
1998-08-30  0:00                                     ` Charles Hixson
1998-08-31  0:00                                       ` Robert I. Eachus
     [not found]                                     ` <35f51e53.48044143@news.erols.c <m3af4mq7f4.fsf@mheaney.ni.net>
1998-08-31  0:00                                       ` Patrick Doyle
1998-08-31  0:00                                         ` Gene Gajewski
1998-08-31  0:00                                         ` Richard D Riehle
1998-09-01  0:00                                           ` Simon Wright
1998-09-02  0:00                                           ` adam
1998-09-01  0:00                                         ` Matthew Heaney
1998-08-31  0:00                                     ` dennison
1998-08-31  0:00                                       ` Robert Martin
1998-09-01  0:00                                         ` Matthew Heaney
1998-09-06  0:00                                           ` Charles Hixson
1998-09-06  0:00                                             ` Matthew Heaney
1998-09-01  0:00                                       ` Andrew Reilly
1998-09-01  0:00                                         ` Matthew Heaney
1998-09-01  0:00                                         ` dennison
1998-09-01  0:00                                           ` Which wastes more time? (Was Re: Software landmines (loops)) Robert Huffman
1998-09-02  0:00                                             ` Gerry Quinn
1998-09-02  0:00                                               ` Jerry van Dijk
1998-09-04  0:00                                                 ` Loryn Jenkins
1998-09-04  0:00                                                   ` Ell
1998-09-05  0:00                                                     ` Loryn Jenkins
1998-09-04  0:00                                                       ` Ell
1998-09-05  0:00                                                       ` Ell
1998-09-05  0:00                                                         ` Loryn Jenkins
1998-09-05  0:00                                                           ` Patrick Logan
1998-09-09  0:00                                                             ` Paolo F. Cantoni
1998-09-09  0:00                                                               ` Patrick Logan
1998-09-11  0:00                                                                 ` Paolo F. Cantoni
1998-09-05  0:00                                                           ` Robert Martin
1998-09-06  0:00                                                             ` Loryn Jenkins
1998-09-05  0:00                                                               ` Robert Martin
1998-09-06  0:00                                                                 ` Loryn Jenkins
1998-09-06  0:00                                                                   ` Robert Martin
1998-09-07  0:00                                                                     ` Loryn Jenkins
1998-09-06  0:00                                                                       ` Robert Martin
1998-09-08  0:00                                                                         ` Loryn Jenkins
1998-09-06  0:00                                                               ` Charles Hixson
1998-09-07  0:00                                                                 ` Loryn Jenkins
1998-09-07  0:00                                                               ` Andrew Reilly
1998-09-06  0:00                                                                 ` Biju Thomas
1998-09-08  0:00                                                                 ` Loryn Jenkins
1998-09-09  0:00                                                               ` Paolo F. Cantoni
1998-09-10  0:00                                                                 ` Loryn Jenkins
1998-09-11  0:00                                                                   ` Paolo F. Cantoni
1998-09-12  0:00                                                                     ` Loryn Jenkins
     [not found]                                                       ` <35f48276.90997557@news.erols.com <35F42CAC.6F566DC7@s054.aone.net.au>
1998-09-07  0:00                                                         ` Patrick Doyle
1998-09-08  0:00                                                           ` Loryn Jenkins
1998-09-08  0:00                                                             ` Patrick Doyle
1998-09-09  0:00                                                               ` Loryn Jenkins
1998-09-08  0:00                                                                 ` Patrick Doyle
1998-09-10  0:00                                                                   ` Loryn Jenkins
1998-09-09  0:00                                                                     ` Patrick Doyle
1998-09-11  0:00                                                                       ` Loryn Jenkins
1998-09-11  0:00                                                                       ` Loryn Jenkins
     [not found]                                                       ` <35f48276.90997557@news.erols.com <35F79B59.185AA03E@s054.aone.net.au>
1998-09-11  0:00                                                         ` Jim Cochrane
1998-09-12  0:00                                                           ` Loryn Jenkins
1998-09-12  0:00                                                             ` Jim Cochrane
1998-09-01  0:00                                         ` Software landmines (loops) dewarr
     [not found]                                     ` <35f51e53.48044143@ <m3af4mq7f4.fsf@mheaney.ni.net>
1998-08-31  0:00                                       ` Andrew Hussey
1998-08-31  0:00                                         ` Mattias Lundstr�m
1998-08-31  0:00                                           ` Robert Martin
1998-08-31  0:00                                             ` Robert I. Eachus
1998-08-31  0:00                                               ` Robert Martin
1998-09-01  0:00                                                 ` Matthew Heaney
1998-09-01  0:00                                                   ` Stephen Leake
1998-09-01  0:00                                                     ` Robert Martin
1998-09-01  0:00                                               ` Matthew Heaney
1998-09-01  0:00                                             ` Richard Jones
1998-09-02  0:00                                               ` Mattias Lundstr�m
1998-09-02  0:00                                               ` Mattias Lundstr�m
1998-09-02  0:00                                                 ` Patrick Logan
1998-09-02  0:00                                                   ` Robert Martin
1998-09-02  0:00                                               ` Mattias Lundstr�m
1998-09-02  0:00                                               ` Mattias Lundstr�m
1998-09-01  0:00                                             ` Mattias Lundstr�m
1998-09-01  0:00                                               ` Robert Martin
1998-09-01  0:00                                                 ` Robert I. Eachus
1998-09-01  0:00                                                   ` Robert Martin
1998-09-02  0:00                                                 ` Mattias Lundstr�m
1998-09-02  0:00                                                 ` Mattias Lundstr�m
1998-09-02  0:00                                                   ` Robert Martin
1998-09-01  0:00                                           ` Tim Ottinger
1998-08-31  0:00                                         ` Matthew Heaney
1998-08-31  0:00                                           ` Robert Martin
1998-08-31  0:00                                             ` Gene Gajewski
1998-09-01  0:00                                             ` Richard Melvin
1998-09-01  0:00                                               ` Robert Martin
1998-09-02  0:00                                               ` Jim Cochrane
1998-09-02  0:00                                                 ` Richard Melvin
1998-09-02  0:00                                                   ` Jim Cochrane
1998-09-03  0:00                                                     ` Matthew Heaney
1998-09-03  0:00                                                       ` Jim Cochrane
1998-09-03  0:00                                                       ` Loryn Jenkins
1998-09-01  0:00                                             ` Phil Goodwin
1998-09-01  0:00                                               ` Biju Thomas
1998-09-02  0:00                                                 ` Phil Goodwin
1998-09-02  0:00                                                   ` Robert Martin
1998-09-03  0:00                                                     ` Phil Goodwin
1998-09-03  0:00                                                       ` Robert Martin
1998-09-03  0:00                                               ` Ole-Hjalmar Kristensen
1998-09-01  0:00                                             ` Chris Brand
1998-09-01  0:00                                               ` Robert Martin
1998-09-01  0:00                                                 ` Biju Thomas
1998-09-01  0:00                                                   ` Robert Martin
1998-09-01  0:00                                             ` Matthew Heaney
1998-08-31  0:00                                               ` Robert Martin
1998-09-01  0:00                                                 ` Gerhard Menzl
1998-09-02  0:00                                                 ` Tres Seaver
1998-09-02  0:00                                                   ` Robert Martin
1998-09-03  0:00                                                     ` sureshvv
1998-09-03  0:00                                                   ` Patrick Logan
1998-09-01  0:00                                             ` sureshvv
1998-09-01  0:00                                               ` Robert Martin
1998-09-02  0:00                                                 ` sureshvv
1998-09-02  0:00                                                   ` Robert Martin
1998-09-02  0:00                                                   ` Robert Martin
1998-09-03  0:00                                                     ` Charles Hixson
1998-09-04  0:00                                                       ` adam
1998-09-06  0:00                                                         ` Gerry Quinn
1998-09-04  0:00                                                       ` Patrick Logan
1998-09-04  0:00                                                     ` Rick Smith
1998-09-04  0:00                                                       ` Charles Hixson
1998-09-04  0:00                                                       ` Robert Martin
     [not found]                                                       ` <gio+van+no+ni+8-0809981818260001@dialup75.tlh.talstar.com>
1998-09-08  0:00                                                         ` Rick Smith
1998-09-08  0:00                                                         ` Mark A Biggar
1998-09-08  0:00                                                       ` adam
1998-09-08  0:00                                                         ` Rick Smith
1998-09-01  0:00                                             ` Robert I. Eachus
1998-08-31  0:00                                           ` Tim McDermott
1998-08-31  0:00                                             ` Larry Brasfield
1998-09-01  0:00                                               ` Matthew Heaney
1998-09-01  0:00                                             ` Matthew Heaney
1998-09-01  0:00                                             ` dewar
1998-09-01  0:00                                           ` Don Harrison
1998-09-01  0:00                                           ` Loryn Jenkins
1998-09-01  0:00                                             ` Matthew Heaney
1998-09-01  0:00                                               ` Loryn Jenkins
1998-09-01  0:00                                                 ` Matthew Heaney
1998-09-01  0:00                                                   ` James Weirich
1998-09-01  0:00                                                     ` Mike Spille
1998-09-02  0:00                                                       ` Nick Leaton
1998-09-02  0:00                                                   ` Loryn Jenkins
1998-09-01  0:00                                                     ` John Volan
1998-09-01  0:00                                                       ` Robert Martin
1998-09-02  0:00                                                       ` Chris Saunders
1998-09-02  0:00                                                       ` Nick Leaton
1998-09-01  0:00                                                     ` Darren New
1998-09-02  0:00                                                       ` Loryn Jenkins
1998-09-02  0:00                                                         ` Matthew Heaney
1998-09-02  0:00                                                           ` Loryn Jenkins
1998-09-01  0:00                                                     ` John Volan
1998-09-02  0:00                                                     ` Matthew Heaney
1998-09-02  0:00                                                       ` Loryn Jenkins
1998-09-02  0:00                                                       ` Tim McDermott
1998-09-03  0:00                                                         ` Matthew Heaney
1998-09-03  0:00                                                       ` Joe Gamache
1998-09-04  0:00                                                         ` Charles Hixson
1998-09-05  0:00                                                           ` Patrick Logan
1998-09-05  0:00                                                             ` Charles Hixson
1998-09-04  0:00                                                 ` Charles Hixson
1998-09-05  0:00                                                   ` Loryn Jenkins
1998-09-01  0:00                                               ` dewarr
1998-09-01  0:00                                                 ` Optimizations (was: Software landmines (loops)) dennison
1998-09-01  0:00                                                   ` Expressive Case Statements (was: Software landmines) Richard D Riehle
1998-09-01  0:00                                                     ` Tucker Taft
1998-09-02  0:00                                                       ` Richard D Riehle
1998-09-01  0:00                                                     ` Robert I. Eachus
1998-09-02  0:00                                                       ` Richard D Riehle
1998-09-02  0:00                                                         ` Robert I. Eachus
1998-09-02  0:00                                                       ` Dr Richard A. O'Keefe
1998-09-02  0:00                                                         ` Matthew Heaney
1998-09-02  0:00                                                         ` Robert I. Eachus
1998-09-04  0:00                                                           ` Al Christians
1998-09-02  0:00                                                         ` Richard D Riehle
1998-09-03  0:00                                                           ` Dale Stanbrough
1998-09-04  0:00                                                           ` Al Christians
1998-09-05  0:00                                                             ` Tom Moran
1998-09-02  0:00                                                     ` Tom Moran
1998-09-02  0:00                                                       ` Matthew Heaney
1998-09-02  0:00                                                       ` Richard D Riehle
1998-09-02  0:00                                                         ` Tom Moran
1998-09-03  0:00                                                           ` Richard D Riehle
1998-09-03  0:00                                                         ` Expressive Case Statements (long source) Tom Moran
1998-09-02  0:00                                                     ` Expressive Case Statements (was: Software landmines) Tom Moran
1998-09-01  0:00                                                 ` Really a U.S. thing? (Was Re: Software landmines (loops)) Brian Rogoff
1998-09-04  0:00                                               ` Software landmines (loops) Jean-Marc Jezequel
1998-09-04  0:00                                                 ` Richard Melvin
1998-09-07  0:00                                                   ` Jean-Marc Jezequel
1998-09-01  0:00                                         ` dewarr
1998-08-31  0:00                                     ` Ell
1998-08-31  0:00                                       ` Robert Martin
1998-08-31  0:00                                         ` Jeffrey C. Dege
1998-08-31  0:00                                           ` Ell
1998-08-31  0:00                                             ` Jeffrey C. Dege
1998-08-31  0:00                                           ` Ell
1998-08-31  0:00                                             ` Gene Gajewski
1998-08-31  0:00                                         ` Matthew Heaney
1998-08-31  0:00                                           ` Gene Gajewski
1998-08-31  0:00                                           ` Ell
1998-08-31  0:00                                             ` Phlip
1998-08-31  0:00                                               ` Robert Martin
1998-08-31  0:00                                             ` Robert Martin
1998-08-31  0:00                                               ` Ell
1998-08-31  0:00                                                 ` Robert Martin
1998-09-03  0:00                                                   ` Steven Perryman
1998-09-01  0:00                                                 ` Charles Hixson
1998-08-31  0:00                                           ` Patrick Logan
1998-09-01  0:00                                             ` dewarr
1998-08-31  0:00                                         ` Stephen Leake
1998-08-31  0:00                                           ` Robert Martin
1998-08-31  0:00                                             ` Agent
1998-09-01  0:00                                               ` Ell
1998-08-31  0:00                                                 ` Robert Martin
1998-09-01  0:00                                                   ` dennison
1998-09-01  0:00                                                     ` Robert Martin
1998-09-02  0:00                                                       ` Andrew Reilly
1998-09-01  0:00                                                         ` Robert Martin
1998-09-02  0:00                                                           ` dennison
1998-09-01  0:00                                                   ` Tim Ottinger
1998-09-01  0:00                                                     ` Robert Martin
     [not found]                                                 ` <6sfqul$ggg$1@hirame. <6sidsq$e6c$1@hirame.wwa.com>
1998-09-03  0:00                                                   ` Patrick Doyle
1998-09-03  0:00                                                     ` Charles Hixson
1998-09-03  0:00                                                       ` John G. Volan
1998-09-01  0:00                                             ` Matthew Heaney
1998-09-01  0:00                                             ` Phil Goodwin
1998-09-01  0:00                                               ` Robert Martin
1998-09-02  0:00                                                 ` Ell
1998-09-01  0:00                                                   ` Robert Martin
1998-09-02  0:00                                                     ` Matthew Heaney
1998-09-02  0:00                                                       ` Robert Martin
1998-09-02  0:00                                                         ` Richard Melvin
1998-09-02  0:00                                                           ` Tim Ottinger
1998-09-02  0:00                                                         ` Matthew Heaney
1998-09-02  0:00                                                     ` dennison
1998-09-02  0:00                                                     ` Richard MacDonald (dogmat)
1998-09-03  0:00                                                       ` Matthew Heaney
1998-09-02  0:00                                                     ` Richard Melvin
1998-09-03  0:00                                                     ` mfinney
     [not found]                                                     ` <gio+van+no+ni+8-0309982244140001@dialup62.tlh.talstar.com>
1998-09-04  0:00                                                       ` Ell
     [not found]                                                 ` <gio+van+no+ni+8-0309982225160001@dialup62.tlh.talstar.com>
1998-09-15  0:00                                                   ` mfinney
1998-10-01  0:00                                             ` Charles H. Sampson
1998-10-02  0:00                                               ` Robert C. Martin
1998-10-02  0:00                                                 ` Charles H. Sampson
1998-10-03  0:00                                                   ` Reimer Behrends
1998-10-04  0:00                                                     ` Charles H. Sampson
1998-10-05  0:00                                                       ` Reimer Behrends
1998-10-05  0:00                                                         ` Patrick Logan
1998-10-06  0:00                                                         ` Charles H. Sampson
1998-10-11  0:00                                                           ` Reimer Behrends
1998-10-02  0:00                                                 ` John I. Moore, Jr.
1998-10-02  0:00                                                   ` Ell
1998-10-03  0:00                                                   ` John Goodsen
1998-10-03  0:00                                                   ` Robert C. Martin
1998-10-03  0:00                                                     ` Richard D Riehle
1998-10-03  0:00                                                     ` Ell
1998-10-03  0:00                                                     ` John I. Moore, Jr.
1998-10-05  0:00                                                       ` Robert C. Martin
1998-10-06  0:00                                                       ` Matt Kennel
1998-10-06  0:00                                                         ` Ell
1998-10-05  0:00                                                     ` dewarr
1998-10-04  0:00                                                       ` Robert C. Martin
1998-10-05  0:00                                                         ` Ell
1998-10-05  0:00                                                           ` Ell
1998-10-05  0:00                                                         ` Ell
1998-10-09  0:00                                                     ` Matthew Heaney
1998-10-09  0:00                                                       ` Ell
1998-10-02  0:00                                                 ` Ell
1998-10-03  0:00                                                   ` Ell
1998-10-03  0:00                                                     ` Ell
1998-10-05  0:00                                                 ` Graham Perkins
1998-10-08  0:00                                                   ` s350817
1998-10-09  0:00                                                 ` Matthew Heaney
1998-10-02  0:00                                               ` Ell
1998-09-01  0:00                                       ` Charles Hixson
     [not found]                                     ` <35f51e53.48044143@ <904556531.666222@miso.it.uq.edu.au>
1998-09-01  0:00                                       ` Gerry Quinn
1998-09-01  0:00                                         ` Robert Martin
1998-09-01  0:00                                           ` Gerry Quinn
1998-09-01  0:00                                             ` Robert Martin
1998-09-02  0:00                                               ` Gerry Quinn
1998-09-02  0:00                                                 ` Robert Martin
1998-09-02  0:00                                                   ` Ell
1998-09-04  0:00                                                     ` Andre Tibben
1998-09-04  0:00                                                       ` Patrick Doyle
1998-09-02  0:00                                                   ` Gerry Quinn
1998-09-02  0:00                                                     ` Robert Martin
1998-09-03  0:00                                                       ` Ell
1998-09-04  0:00                                                         ` Ell
1998-09-03  0:00                                                           ` Robert Martin
1998-09-04  0:00                                                             ` Ell
1998-09-04  0:00                                                               ` Patrick Doyle
1998-09-05  0:00                                                                 ` Ell
1998-09-05  0:00                                                                   ` Jeffrey C. Dege
1998-09-05  0:00                                                                     ` Matthew Heaney
1998-09-05  0:00                                                                       ` Matthew Heaney
1998-09-05  0:00                                                                         ` Robert Martin
1998-09-06  0:00                                                                           ` Loryn Jenkins
1998-09-05  0:00                                                                             ` Robert Martin
1998-09-06  0:00                                                                               ` Loryn Jenkins
1998-09-06  0:00                                                                                 ` Charles Hixson
1998-09-06  0:00                                                                                   ` Patrick Doyle
1998-09-07  0:00                                                                                 ` Ray Gardner
1998-09-07  0:00                                                                                   ` Patrick Logan
1998-09-08  0:00                                                                         ` Tim McDermott
1998-09-08  0:00                                                                           ` Patrick Doyle
1998-09-08  0:00                                                                             ` Patrick Logan
1998-09-17  0:00                                                                           ` Matthew Heaney
1998-09-05  0:00                                                                       ` Robert Martin
1998-09-09  0:00                                                                       ` Tim Ottinger
1998-09-17  0:00                                                                         ` Matthew Heaney
1998-09-16  0:00                                                                           ` Tim Ottinger
1998-09-17  0:00                                                                             ` [WAYRTW?] (was: Re: Software landmines (loops)) Zane Lewkowicz
1998-09-17  0:00                                                                               ` Biju Thomas
1998-09-18  0:00                                                                               ` L. Darrell Ray
1998-09-05  0:00                                                                   ` Software landmines (loops) Loryn Jenkins
1998-09-05  0:00                                                                     ` Robert Martin
1998-09-06  0:00                                                                       ` Loryn Jenkins
1998-09-05  0:00                                                                         ` Robert Martin
1998-09-06  0:00                                                                           ` Loryn Jenkins
1998-09-04  0:00                                                               ` Robert Martin
1998-09-05  0:00                                                                 ` Loryn Jenkins
1998-09-04  0:00                                                                   ` Ell
1998-09-05  0:00                                                                     ` Loryn Jenkins
1998-09-03  0:00                                                       ` sureshvv
1998-09-03  0:00                                                         ` Robert Martin
1998-09-03  0:00                                                           ` Mike Spille
1998-09-03  0:00                                                             ` Robert Martin
1998-09-03  0:00                                                               ` Mike Spille
1998-09-03  0:00                                                                 ` Robert Martin
1998-09-04  0:00                                                                 ` sureshvv
1998-09-04  0:00                                                                   ` Robert Martin
1998-09-04  0:00                                                                     ` Mike Spille
1998-09-05  0:00                                                                       ` Ell
1998-09-05  0:00                                                                         ` Moderators for life (was: Re: Software landmines) Martijn Meijering
1998-09-05  0:00                                                                           ` Thaddeus L. Olczyk
1998-09-06  0:00                                                                           ` Moderators for life Ell
1998-09-04  0:00                                                               ` Software landmines (loops) Ray Blaak
1998-09-06  0:00                                                                 ` Charles Hixson
1998-09-06  0:00                                                                   ` Robert Martin
1998-09-07  0:00                                                                     ` Patrick Logan
1998-09-04  0:00                                                               ` Gerry Quinn
     [not found]                                                               ` <EyyLos.2nx@yc.estec.esa.nl>
1998-09-08  0:00                                                                 ` Robert Martin
1998-09-08  0:00                                                                 ` John G. Volan
1998-09-08  0:00                                                                   ` duncan
1998-09-08  0:00                                                                     ` Patrick Doyle
1998-09-06  0:00                                                           ` Charles Hixson
1998-09-06  0:00                                                             ` Robert Martin
1998-09-06  0:00                                                               ` Charles Hixson
1998-09-09  0:00                                                               ` sureshvv
1998-09-03  0:00                                                         ` Patrick Logan
1998-09-04  0:00                                                           ` Matthew Heaney
     [not found]                                                     ` <6skqf3$ <35F0B5B0.8E2D0166@s054.aone.net.au>
1998-09-06  0:00                                                       ` Will Rose
1998-09-06  0:00                                                         ` Ell
1998-09-06  0:00                                                           ` Jeffrey C. Dege
1998-09-01  0:00                                           ` Mike Spille
1998-09-01  0:00                                             ` Robert Martin
     [not found]                                               ` <gio+van+no+ni+8-0309982212300001@dialup62.tlh.talstar.com>
1998-09-04  0:00                                                 ` Robert I. Eachus
     [not found]                                                   ` <gio+van+no+ni+8-0809981840170001@dialup75.tlh.talstar.com>
1998-09-09  0:00                                                     ` Nick Leaton
     [not found]                                                       ` <gio+van+no+ni+8-1609980026290001@dialup26.tlh.talstar.com>
1998-09-16  0:00                                                         ` Nick Leaton
1998-09-02  0:00                                           ` mfinney
1998-09-02  0:00                                             ` john-clonts
1998-09-03  0:00                                               ` mfinney
1998-09-06  0:00                                                 ` Charles Hixson
1998-09-06  0:00                                                   ` mfinney
1998-09-02  0:00                                             ` Robert Martin
1998-09-02  0:00                                               ` adam
1998-09-02  0:00                                               ` Phil Goodwin
1998-09-02  0:00                                               ` Matthew Heaney
1998-09-02  0:00                                                 ` Robert Martin
1998-09-02  0:00                                                   ` Matthew Heaney
1998-09-02  0:00                                                     ` Patrick Logan
1998-09-03  0:00                                                       ` Matthew Heaney
1998-09-03  0:00                                                         ` Patrick Logan
1998-09-03  0:00                                                       ` Ole-Hjalmar Kristensen
1998-09-03  0:00                                                         ` Patrick Logan
1998-09-02  0:00                                                     ` Robert Martin
1998-09-03  0:00                                                       ` Matthew Heaney
1998-09-03  0:00                                                         ` Robert Martin
1998-09-03  0:00                                                           ` Biju Thomas
1998-09-03  0:00                                                           ` Phil Goodwin
1998-09-04  0:00                                                             ` Matthew Heaney
1998-09-04  0:00                                                               ` Jeffrey C. Dege
1998-09-04  0:00                                                                 ` Patrick Logan
1998-09-04  0:00                                                                 ` Ell
1998-09-04  0:00                                                                   ` Elliot's paranoia (was something relevent once, but no longer) Jeffrey C. Dege
1998-09-04  0:00                                                           ` Software landmines (loops) Ell
1998-09-04  0:00                                                             ` Ell
1998-09-05  0:00                                                             ` Loryn Jenkins
1998-09-06  0:00                                                               ` Charles Hixson
1998-09-07  0:00                                                                 ` Loryn Jenkins
     [not found]                                                             ` <35F074C9.E10C <35F2E907.594CD023@earthlink.net>
1998-09-07  0:00                                                               ` Patrick Doyle
1998-09-10  0:00                                                             ` Tim Ottinger
1998-09-10  0:00                                                               ` dewarr
1998-09-11  0:00                                                                 ` prochak
1998-09-12  0:00                                                                 ` Ell
1998-09-12  0:00                                                                   ` dewarr
1998-09-12  0:00                                                                     ` Charles Hixson
1998-09-13  0:00                                                                       ` dewarr
1998-09-14  0:00                                                                     ` Ell
1998-09-03  0:00                                                         ` Robert Martin
1998-09-03  0:00                                                         ` Patrick Logan
1998-09-03  0:00                                                           ` Module size (was Re: Software landmines) Jeffrey C. Dege
1998-09-03  0:00                                                             ` Robert Martin
1998-09-04  0:00                                                               ` Martin Tom Brown
1998-09-04  0:00                                                                 ` Christopher P. Gariepy
1998-09-04  0:00                                                                   ` Robert Martin
1998-09-04  0:00                                                                     ` Pat Rogers
1998-09-05  0:00                                                                       ` Ell
1998-09-05  0:00                                                                         ` Loryn Jenkins
1998-09-05  0:00                                                                           ` Robert Martin
1998-09-05  0:00                                                                             ` Jeffrey C. Dege
1998-09-06  0:00                                                                             ` Loryn Jenkins
1998-09-06  0:00                                                                               ` Patrick Doyle
1998-09-08  0:00                                                                                 ` Ken Carpenter
1998-09-08  0:00                                                                                 ` James Weirich
1998-09-05  0:00                                                                           ` Patrick Doyle
1998-09-05  0:00                                                                       ` Loryn Jenkins
1998-09-04  0:00                                                                         ` Types vs classes (was Re: Module size (was Re: Software landmines)) Pat Rogers
1998-09-05  0:00                                                                           ` Loryn Jenkins
1998-09-07  0:00                                                                             ` Juergen Schlegelmilch
1998-09-07  0:00                                                                               ` Juergen Schlegelmilch
1998-09-04  0:00                                                                   ` Module size (was Re: Software landmines) Ell
1998-09-04  0:00                                                                   ` Emtpy procedures (was Re: Module size (was Re: Software landmines)) Jim Cochrane
1998-09-04  0:00                                                                   ` Module size (was Re: Software landmines) John G. Volan
1998-09-06  0:00                                                                     ` Charles Hixson
1998-09-06  0:00                                                                       ` John G. Volan
1998-09-04  0:00                                                             ` John G. Volan
1998-09-04  0:00                                                               ` Patrick Logan
1998-09-05  0:00                                                                 ` Jeffrey C. Dege
1998-09-05  0:00                                                                   ` Patrick Logan
1998-09-05  0:00                                                                     ` Jeffrey C. Dege
1998-09-04  0:00                                                               ` John G. Volan
1998-09-04  0:00                                                             ` Chris Kuan
1998-09-04  0:00                                                               ` Jeffrey C. Dege
1998-09-04  0:00                                                                 ` Chris Kuan
1998-09-02  0:00                                                   ` Software landmines (loops) dennison
1998-09-02  0:00                                                   ` Dan Higdon
1998-09-03  0:00                                                     ` Mid-Loop 'Until' Proposal [was: Software landmines (loops)] John G. Volan
     [not found]                                                       ` <Q7UH1.3152$re2.302134@news.giganews.com>
     [not found]                                                         ` <35F2E055.6922B7EC@earthlink.net>
1998-09-06  0:00                                                           ` John G. Volan
1998-09-02  0:00                                               ` Software landmines (loops) adam
1998-09-02  0:00                                                 ` Robert Martin
1998-09-02  0:00                                                   ` Mike Spille
1998-09-03  0:00                                                   ` Richard MacDonald
1998-09-03  0:00                                                   ` Gerry Quinn
1998-09-06  0:00                                                 ` Charles Hixson
1998-09-02  0:00                                               ` Ell
1998-09-02  0:00                                                 ` Rick Smith
1998-09-02  0:00                                                   ` Robert I. Eachus
1998-09-02  0:00                                                     ` Patrick Logan
1998-09-03  0:00                                                       ` Robert I. Eachus
1998-09-02  0:00                                                 ` adam
1998-09-02  0:00                                                 ` Patrick Doyle
1998-09-02  0:00                                                 ` Robert Martin
1998-09-02  0:00                                                   ` Ell
1998-09-02  0:00                                                     ` Robert Martin
1998-09-02  0:00                                                       ` Ell
1998-09-02  0:00                                                         ` Robert Martin
1998-09-03  0:00                                                           ` Joe Gwinn
1998-09-03  0:00                                                             ` Robert Martin
1998-09-04  0:00                                                               ` sureshvv
1998-09-04  0:00                                                               ` Ell
1998-09-04  0:00                                                                 ` Robert Martin
1998-09-04  0:00                                                                   ` Ell
1998-09-06  0:00                                                             ` Charles Hixson
1998-09-06  0:00                                                               ` Robert Martin
1998-09-06  0:00                                                                 ` Jeffrey C. Dege
1998-09-06  0:00                                                                   ` Robert Martin
1998-09-06  0:00                                                               ` Matthew Heaney
1998-09-06  0:00                                                                 ` Robert Martin
1998-09-06  0:00                                                                   ` Ell
1998-09-06  0:00                                                                     ` Jeffrey C. Dege
1998-09-11  0:00                                                                   ` Robert I. Eachus
1998-09-12  0:00                                                                     ` Patrick Logan
1998-09-08  0:00                                                               ` adam
1998-09-09  0:00                                                                 ` Gerry Quinn
     [not found]                                                                   ` <gio+van+no+ni+8-1609980034390001@dialup26.tlh.talstar.com>
1998-09-16  0:00                                                                     ` Biju Thomas
1998-09-16  0:00                                                                       ` Is there a language that Dijkstra liked? (was: Re: Software landmines (loops)) Rick Smith
1998-09-17  0:00                                                                         ` Markus Kuhn
1998-09-17  0:00                                                                           ` Pat Rogers
1998-09-17  0:00                                                                             ` David C. Hoos, Sr.
1998-09-17  0:00                                                                             ` dewarr
1998-09-21  0:00                                                                             ` Is there a language that Dijkstra liked? Peter Hermann
1998-09-21  0:00                                                                               ` Pat Rogers
1998-09-21  0:00                                                                               ` dewarr
1998-09-17  0:00                                                                           ` Is there a language that Dijkstra liked? (was: Re: Software landmines (loops)) dewarr
1998-09-17  0:00                                                                             ` Biju Thomas
1998-09-18  0:00                                                                               ` dewarr
1998-09-18  0:00                                                                                 ` Markus Kuhn
1998-10-09  0:00                                                                             ` Matthew Heaney
1998-10-09  0:00                                                                               ` Pat Rogers
1998-10-09  0:00                                                                               ` Jay Martin
1998-10-09  0:00                                                                                 ` Pat Rogers
1998-10-10  0:00                                                                                 ` Dave Wood
1998-10-13  0:00                                                                                 ` last.first
1998-10-23  0:00                                                                                   ` Gautier.DeMontmollin
1998-10-23  0:00                                                                                   ` Brian Mueller
1998-10-23  0:00                                                                                     ` Arun Mangalam
1998-10-23  0:00                                                                                       ` DPH
1998-10-24  0:00                                                                                         ` Michael Stark
1998-10-23  0:00                                                                                     ` midlamD
1998-10-23  0:00                                                                                       ` Ell
1998-10-23  0:00                                                                                     ` College, C, etc. (Was Re: Is there a language that Dijkstra liked?) Darren New
1998-10-23  0:00                                                                                       ` Tom J
1998-10-23  0:00                                                                                         ` K. Mathias
1998-10-24  0:00                                                                                       ` Jerry van Dijk
1998-10-25  0:00                                                                                       ` College, C, etc Frank Sergeant
1998-10-26  0:00                                                                                         ` Darren New
1998-10-29  0:00                                                                                           ` Graham Perkins
1998-10-29  0:00                                                                                             ` Paul A. Howes
1998-10-30  0:00                                                                                               ` Jeffrey C. Dege
1998-10-30  0:00                                                                                                 ` Patrick Logan
1998-10-29  0:00                                                                                             ` Arun Mangalam
1998-10-23  0:00                                                                                     ` Is there a language that Dijkstra liked? (was: Re: Software landmines (loops)) Ell
1998-10-24  0:00                                                                                     ` Dave Wood
1998-10-24  0:00                                                                                     ` Dale Stanbrough
1998-10-24  0:00                                                                                     ` Dave Wood
1998-10-24  0:00                                                                                       ` Tucker Taft
1998-10-24  0:00                                                                                     ` Ehud Lamm
1998-10-26  0:00                                                                                     ` Bill Ghrist
1998-10-27  0:00                                                                                       ` Ell
1998-10-27  0:00                                                                                         ` dewarr
     [not found]                                                                                     ` <3 <slrn73ifd1.8ip.jdege@jdege.visi.com>
1998-10-30  0:00                                                                                       ` College, C, etc Tom J
1998-10-11  0:00                                                                               ` Is there a language that Dijkstra liked? (was: Re: Software landmines (loops)) Bertrand Meyer
1998-10-12  0:00                                                                                 ` Pat Rogers
1998-10-12  0:00                                                                                 ` Rod Chapman
1998-10-13  0:00                                                                                 ` Robert I. Eachus
1998-09-18  0:00                                                                           ` bengt
1998-09-17  0:00                                                                       ` Software landmines (loops) Gerry Quinn
1998-09-17  0:00                                                                         ` dewarr
1998-09-18  0:00                                                                           ` Gerry Quinn
1998-09-18  0:00                                                                             ` Biju Thomas
1998-09-18  0:00                                                                               ` Robert C. Martin
1998-09-19  0:00                                                                                 ` Rick Smith
1998-09-19  0:00                                                                               ` Ell
1998-09-19  0:00                                                                               ` dewarr
1998-09-21  0:00                                                                                 ` Richard D Riehle
1998-09-19  0:00                                                                             ` dewarr
1998-09-17  0:00                                                                       ` dewarr
1998-09-18  0:00                                                                         ` Ell
1998-09-11  0:00                                                                 ` spaghetti code(was Re: Software landmines (loops)) Joe Chacko
     [not found]                                                                   ` <01bddfb7$f3eac320$ca3aea9e@tom>
1998-09-15  0:00                                                                     ` prochak
1998-09-03  0:00                                                       ` Software landmines (loops) Malcolm Steel
     [not found]                                                       ` <o1fH1.543$495.1 <gwinn-0309982042490001@d8.dial-4.cmb.ma.ultra.net>
1998-09-04  0:00                                                         ` Samuel Mize
1998-09-04  0:00                                                           ` Ell
1998-09-05  0:00                                                           ` Loryn Jenkins
1998-09-09  0:00                                                             ` Samuel Mize
1998-09-09  0:00                                                               ` sureshvv
1998-09-10  0:00                                                                 ` prochak
1998-09-11  0:00                                                                   ` Patrick Doyle
1998-09-17  0:00                                                                 ` Matthew Heaney
1998-09-10  0:00                                                               ` Tim Ottinger
     [not found]                                                                 ` <01bddccc$98b2dda0$ca3aea9e@tom>
1998-09-10  0:00                                                                   ` Tim Ottinger
1998-09-11  0:00                                                             ` Robert I. Eachus
1998-09-12  0:00                                                               ` Loryn Jenkins
1998-09-11  0:00                                                                 ` alan walkington
1998-09-12  0:00                                                                   ` Loryn Jenkins
1998-09-17  0:00                                                                 ` Linguistic invention (was Re: Software landmines (loops)) Robert I. Eachus
1998-09-18  0:00                                                                   ` Ell
1998-10-09  0:00                                                       ` Is there a language that Dijkstra liked? (was: " Gautier.DeMontmollin
1998-09-02  0:00                                                     ` Software landmines (loops) Robert Martin
1998-09-02  0:00                                                       ` Ell
     [not found]                                                     ` <6sjnlu$83l$1@hirame.wwa.c <35EE5F67.80D@gecm.com>
1998-09-03  0:00                                                       ` Patrick Doyle
1998-09-02  0:00                                                   ` Ell
1998-09-03  0:00                                                     ` Ole-Hjalmar Kristensen
1998-09-03  0:00                                                       ` Ell
1998-09-03  0:00                                                         ` Patrick Doyle
1998-09-03  0:00                                                         ` Martin Tom Brown
     [not found]                                               ` <gio+van+no+ni+8-0309982311220001@dialup62.tlh.talstar.com>
1998-09-03  0:00                                                 ` Robert Martin
1998-09-03  0:00                                               ` mfinney
1998-09-03  0:00                                                 ` Robert Martin
1998-09-02  0:00                                             ` Ell
1998-09-02  0:00                                             ` Ell
1998-09-02  0:00                                               ` Robert Oliver
1998-09-02  0:00                                                 ` Matthew Heaney
1998-09-02  0:00                                                 ` Ell
1998-09-02  0:00                                                   ` Robert Oliver
1998-09-02  0:00                                                     ` Robert Martin
1998-09-03  0:00                                                       ` sureshvv
1998-09-03  0:00                                                         ` Patrick Logan
1998-09-06  0:00                                                       ` Charles Hixson
1998-09-07  0:00                                                         ` Loryn Jenkins
1998-09-03  0:00                                                     ` Ell
1998-09-03  0:00                                                       ` Jeffrey C. Dege
1998-09-02  0:00                                                 ` john-clonts
1998-09-02  0:00                                                   ` Robert Martin
1998-09-02  0:00                                                   ` Darren New
1998-09-05  0:00                                               ` Ray Gardner
1998-09-05  0:00                                                 ` Matthew Heaney
1998-09-07  0:00                                                   ` Ray Gardner
1998-09-07  0:00                                                     ` Ell
1998-09-07  0:00                                                       ` Ell
1998-09-09  0:00                                                         ` Adrian P. Morgan
1998-09-09  0:00                                                           ` Charles Hixson
1998-09-10  0:00                                                             ` mfinney
     [not found]                                                               ` <gio+van+no+ni+8-1609981736190001@dialup47.tlh.talstar.com>
1998-09-17  0:00                                                                 ` mfinney
1998-09-07  0:00                                                       ` Patrick Doyle
1998-09-07  0:00                                                         ` dewarr
1998-09-07  0:00                                                       ` Ray Gardner
1998-09-07  0:00                                                         ` Ell
1998-09-07  0:00                                                           ` Ell
1998-09-09  0:00                                                           ` Ray Gardner
1998-09-07  0:00                                                       ` dewarr
1998-09-09  0:00                                                         ` Ray Gardner
1998-09-11  0:00                                                           ` Robert I. Eachus
1998-10-09  0:00                                                     ` Matthew Heaney
     [not found]                                               ` <m31zpq4pim.fsf@mheaney.ni.ne <m3af36wtwh.fsf@mheaney.ni.net>
1998-10-11  0:00                                                 ` Patrick Doyle [this message]
1998-09-02  0:00                                           ` Gene Gajewski
1998-09-03  0:00                                     ` Expressive Case Statements (was: Software landmines) Fergus Henderson
1998-09-09  0:00                                     ` Software landmines (loops) Jonas M�ls�
     [not found]                                     ` <35f51e53.48044143@ <6t6l4n$rep@jbm.nada.kth.se>
1998-09-10  0:00                                       ` Mats Weber
1998-09-17  0:00                                       ` Matthew Heaney
     [not found]                                 ` <m3ogt3qgca.fsf@mheaney.ni.n <1dghyt5.oik1lzhxzf2N@n207167116176.inetworld.net>
1998-10-10  0:00                                   ` Patrick Doyle
1998-10-12  0:00                                     ` Charles H. Sampson
1998-10-13  0:00                                       ` Matthew Heaney
1998-10-14  0:00                                       ` Graham Perkins
1998-10-15  0:00                                         ` Reimer Behrends
1998-10-15  0:00                                           ` dewarr
1998-10-15  0:00                                       ` Indicators of program quality? (was Re: Software landmines) Jeffrey C. Dege
1998-08-20  0:00                               ` Software landmines (was: Why C++ is successful) Dan Higdon
     [not found]                               ` <m33eagru5g.fsf@mheaney.ni.net>
1998-08-31  0:00                                 ` Frank Adrian
1998-08-31  0:00                                   ` Robert I. Eachus
1998-08-31  0:00                                     ` Biju Thomas
1998-08-31  0:00                                       ` Robert Martin
1998-09-01  0:00                                         ` Martin Dowie
1998-09-01  0:00                                       ` Robert I. Eachus
1998-09-02  0:00                                         ` dennison
1998-09-01  0:00                                   ` dewarr
1998-09-06  0:00                                 ` Jonathan Guthrie
1998-08-20  0:00                           ` Ell
1998-08-20  0:00                             ` Structured programming (Re: Software landmines (was: Why C++ is successful)) Darren New
1998-08-21  0:00                               ` Gene Gajewski
1998-08-21  0:00                             ` Software landmines (was: Why C++ is successful) Ell
1998-08-21  0:00                               ` Larry Brasfield
1998-08-21  0:00                                 ` Ell
1998-08-21  0:00                                 ` Jeffrey C. Dege
1998-08-20  0:00                                   ` Phlip
1998-08-21  0:00                                   ` Larry Brasfield
     [not found]                                   ` <DOSXjHE9T6DM9Jw9nAyaPxfz@news.rdc1.bc.wave.home.com>
1998-08-22  0:00                                     ` dewar
1998-08-24  0:00                                       ` Martin Dowie
1998-08-24  0:00                                         ` Martin Dowie
1998-08-24  0:00                                           ` Mark A Biggar
1998-08-25  0:00                                             ` Martin Dowie
1998-08-25  0:00                                               ` Mark A Biggar
1998-08-26  0:00                                                 ` Martin Dowie
1998-08-25  0:00                                         ` adam
1998-08-24  0:00                                       ` dennison
1998-08-28  0:00                                         ` Matthew Heaney
1998-08-28  0:00                                           ` dennison
1998-08-30  0:00                                             ` Matthew Heaney
1998-09-06  0:00                                               ` John G. Volan
1998-08-31  0:00                                             ` Robert I. Eachus
1998-09-22  0:00                                       ` Charles H. Sampson
1998-08-21  0:00                                 ` Bob Collins
1998-08-21  0:00                               ` John Goodsen
1998-08-21  0:00                                 ` Ell
1998-08-21  0:00                                   ` Ell
     [not found]                           ` <l5HC1.6840$wN.18 <35F238F7.F57D3EC7@earthlink.net>
1998-09-06  0:00                             ` Software landmines (loops) Patrick Doyle
1998-10-21  0:00                           ` Is there a language that Dijkstra liked? (was: Re: Software landmines (loops)) Van Snyder
1998-10-22  0:00                             ` biocyn
1998-10-26  0:00                               ` Ehud Lamm
1998-10-26  0:00                                 ` Tucker Taft
1998-10-26  0:00                                   ` dennison
1998-10-26  0:00                                     ` Ehud Lamm
1998-10-26  0:00                                       ` Pat Rogers
1998-10-27  0:00                                       ` dennison
1998-10-27  0:00                                     ` Dave Wood
1998-10-28  0:00                                       ` norm
1998-10-27  0:00                                     ` bill
1998-10-27  0:00                                 ` dewarr
1998-10-27  0:00                                   ` Ehud Lamm
1998-11-04  0:00                                   ` business for students Domenico Bisignano
1998-08-19  0:00                         ` Software landmines (was: Why C++ is successful) Charles Hixson
1998-08-20  0:00                         ` Gerry Quinn
1998-08-16  0:00                   ` Jay Martin
1998-08-17  0:00                     ` Robert Dewar
1998-08-14  0:00                 ` Why C++ is successful Ell
1998-08-17  0:00                   ` Robert I. Eachus
1998-08-17  0:00                     ` Patrick Logan
1998-08-18  0:00                       ` Samuel Tardieu
1998-08-25  0:00                       ` Optimizing recursion (was Re: Why C++ is successful) Robert I. Eachus
1998-08-25  0:00                         ` Darren New
1998-08-26  0:00                           ` Martin Tom Brown
1998-08-26  0:00                           ` Robert I. Eachus
1998-08-26  0:00                           ` Aaro Koskinen
     [not found]                       ` <EACHUS.98Aug25165110@s <6s43nq$m31$1@berlin.infomatch.com>
1998-08-27  0:00                         ` Constants vs Functions (was Re: Optimizing recursion...) Robert I. Eachus
1998-08-27  0:00                       ` Ray Blaak
1998-08-14  0:00                 ` Why C++ is successful Jean-Pierre Rosen
1998-08-14  0:00                   ` Robert Martin
1998-08-16  0:00                     ` Robert Dewar
1998-08-16  0:00                       ` Rick Smith
1998-08-17  0:00                         ` Robert Dewar
1998-08-17  0:00                           ` Rick Smith
1998-08-16  0:00                       ` Robert Martin
1998-08-15  0:00                   ` Patrick Doyle
1998-08-15  0:00                     ` Jean-Pierre Rosen
1998-08-16  0:00                       ` Robert Dewar
1998-08-17  0:00                         ` Jean-Pierre Rosen
1998-08-16  0:00                       ` Patrick Doyle
1998-08-15  0:00                   ` Mr Ada
1998-08-16  0:00                     ` Robert Dewar
1998-08-16  0:00                   ` Robert Dewar
1998-08-11  0:00           ` stilcom
1998-08-11  0:00             ` Microsoft Authors [was Re: Why C++ is successful] john-clonts
1998-08-11  0:00               ` dennison
1998-08-11  0:00                 ` John Weiss
1998-08-12  0:00             ` Why C++ is successful Jeffrey C. Dege
1998-08-12  0:00               ` Andrew Koenig
1998-08-12  0:00               ` Code Complete (Was: Re: Why C++ is successful) Chris Kuan
1998-08-14  0:00               ` Why C++ is successful Stefan Tilkov
     [not found]           ` <35f51e53.48044143@ <m3af4mq7f4 <m31zpxqutn.fsf@mheaney.ni.net>
1998-08-31  0:00             ` Software landmines (loops) Jim Cochrane
1998-09-01  0:00               ` Matthew Heaney
1998-09-02  0:00                 ` Jim Cochrane
1998-09-02  0:00                   ` Richard Melvin
1998-09-03  0:00                     ` Jim Cochrane
1998-09-03  0:00                   ` Robert I. Eachus
1998-09-01  0:00               ` Matthew Heaney
     [not found]           ` <35f51e53.48044143@ <m3af4mq7f4 <35EC1590.D50DB8F6@tisny.com>
1998-09-01  0:00             ` Patrick Doyle
     [not found]           ` <35f51e53.48044143@ <m3af4mq7f4 <6shhg4$llp$1@hirame.wwa.com>
1998-09-02  0:00             ` Jim Cochrane
     [not found]           ` <35f51e53.48044143@ <m3af4mq7f4 <6sjms6$7c4$1@hirame.wwa.com>
1998-09-02  0:00             ` Patrick Doyle
1998-09-02  0:00               ` Patrick Logan
1998-09-02  0:00                 ` Patrick Doyle
1998-09-02  0:00                   ` Robert Martin
1998-09-03  0:00                   ` Patrick Logan
1998-09-02  0:00               ` Robert Martin
1998-09-02  0:00                 ` Patrick Logan
1998-09-02  0:00                   ` Robert Martin
1998-09-04  0:00                     ` Patrick Logan
1998-09-03  0:00               ` mfinney
1998-09-03  0:00                 ` Patrick Doyle
1998-09-03  0:00               ` Matthew Heaney
1998-09-03  0:00                 ` Robert Martin
1998-09-03  0:00                   ` Patrick Logan
     [not found]           ` <35f51e53.48044143@ <m3af4mq7f4 <6shunm$47g$1@hirame.wwa.com>
1998-09-02  0:00             ` David E. Wallace
     [not found]           ` <35f51e53.48044143@ <m3af4mq7f4 <m3zpck79xp.fsf@mheaney.ni.net>
1998-09-02  0:00             ` Patrick Doyle
     [not found]           ` <35f51e53.48044143@ <m3af4mq7f4 <35EDC648.76F03F32@draper.com>
1998-09-03  0:00             ` Patrick Doyle
1998-09-03  0:00               ` Tim McDermott
1998-09-04  0:00                 ` Matthew Heaney
1998-09-04  0:00                   ` Patrick Doyle
1998-09-08  0:00                   ` Tim McDermott
1998-09-17  0:00                     ` Matthew Heaney
1998-09-17  0:00                       ` Reimer Behrends
1998-09-18  0:00                       ` Robert I. Eachus
1998-09-18  0:00                         ` Jeffrey C. Dege
1998-09-04  0:00                 ` Patrick Doyle
1998-09-03  0:00               ` Martin Tom Brown
     [not found]           ` <35f51e53.48044143@ <904556531. <m3lno372be.fsf@mheaney.ni.net>
1998-09-03  0:00             ` Patrick Doyle
1998-09-03  0:00               ` Loryn Jenkins
1998-09-03  0:00             ` Patrick Doyle
     [not found]           ` <35f51e53.48044143@ <m3af4mq7f4 <35EC937F.94420C51@ibm.net>
1998-09-07  0:00             ` Michael F Brenner
     [not found]           ` <35f51e53.48044143@ <m3af4mq7f4 <35F09429.1A7CD250@easystreet.com>
1998-09-07  0:00             ` Expressive Case Statements (was: Software landmines) Michael F Brenner
     [not found]           ` <35f51e53.480<904556531.666222@ <6t42kg$son$1@hirame.wwa.com>
1998-09-08  0:00             ` Software landmines (loops) Patrick Doyle
     [not found]           ` <35f51e53.480 <904556531.66622 <EyyLos.2nx@yc.estec.esa.nl>
1998-09-08  0:00             ` duncan
1998-09-16  0:00               ` Matthew Heaney
1998-09-17  0:00                 ` Reimer Behrends
1998-09-17  0:00                   ` Ell
1998-09-08  0:00             ` Jim Cochrane
1998-09-09  0:00               ` duncan
1998-09-11  0:00                 ` Jim Cochrane
1998-09-11  0:00                   ` duncan
1998-09-09  0:00               ` Charles Hixson
1998-09-10  0:00                 ` Loryn Jenkins
1998-09-17  0:00                 ` Matthew Heaney
1998-08-08  0:00       ` Why C++ is successful Dale Stanbrough
1998-08-07  0:00 ` Jason Stokes
1998-08-08  0:00   ` Robert Dewar
1998-08-10  0:00     ` Robert I. Eachus
1998-08-11  0:00     ` n
1998-08-12  0:00       ` Why C++ is successful? Robert I. Eachus
1998-08-12  0:00         ` Joe Gwinn
1998-08-13  0:00           ` Larry Kilgallen
1998-08-14  0:00           ` Robert Dewar
1998-08-14  0:00             ` Bob Munck
1998-08-16  0:00               ` Robert Dewar
1998-08-14  0:00             ` nasser
1998-08-16  0:00               ` Chris Morgan
1998-08-17  0:00               ` asilvant
1998-08-17  0:00             ` Robert I. Eachus
1998-08-13  0:00         ` Bob Munck
1998-08-14  0:00       ` Why C++ is successful Robert Dewar
     [not found]         ` <35D455AC.9225EAA7@hercii.mar.lmco.com>
1998-08-14  0:00           ` Robert L. Spooner
1998-08-10  0:00   ` Darren New
  -- strict thread matches above, loose matches on Subject: below --
1998-09-07  0:00 Software landmines (loops) Robert Martin
1998-09-08  0:00 ` Mike Spille
replies disabled

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox