modified: myjupyterlab.sh
[GalaxyCodeBases.git] / c_cpp / etc / calc / help / arrow
blob2895a1b06b8b01439219abb41a51f569a90af83d
1 SYMBOL and NAME
2     ->  - arrow operator
4 SYNOPSIS
5     p -> X
7 TYPES
8     p           pointer to an lvalue
9     X           identifier
11     return      lvalue
13 DESCRIPTION
14     p->X returns the same as (*p).X.  Thus the current value of *p is
15     to be an object of a type for which X identifies one element.
16     p->X then returns the lvalue corresponding to that element of the
17     value of *p.
19     The expression *p.X will cause a runtime error since this is
20     interpreted as *(p.X) in which p is expected to be an object of
21     an appropriate type.
23     Spaces or tabs on either side of -> are optional.
25 EXAMPLES
26     ; obj pair {one, two}
27     ; obj pair A, B
28     ; p = &A
29     ; p->one = 1; p->two = 2
30     ; A
31             obj pair {1, 2}
33     ; A->two = &B
34     ; p->two->one = 3; p->two->two = 4
36     ; *p->ptwo
37             obj pair {3, 4}
39     ; B = {5,6}
40     ; *p->two
41             obj pair {5, 6}
44 LIMITS
45     none
47 LINK LIBRARY
48     none
50 SEE ALSO
51     address, dereference, isptr, dot
53 ## Copyright (C) 1999  Landon Curt Noll
55 ## Calc is open software; you can redistribute it and/or modify it under
56 ## the terms of the version 2.1 of the GNU Lesser General Public License
57 ## as published by the Free Software Foundation.
59 ## Calc is distributed in the hope that it will be useful, but WITHOUT
60 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
61 ## or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General
62 ## Public License for more details.
64 ## A copy of version 2.1 of the GNU Lesser General Public License is
65 ## distributed with calc under the filename COPYING-LGPL.  You should have
66 ## received a copy with calc; if not, write to Free Software Foundation, Inc.
67 ## 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
69 ## @(#) $Revision: 30.1 $
70 ## @(#) $Id: arrow,v 30.1 2007/03/16 11:10:42 chongo Exp $
71 ## @(#) $Source: /usr/local/src/cmd/calc/help/RCS/arrow,v $
73 ## Under source code control:   1997/09/06 20:03:34
74 ## File existed as early as:    1997
76 ## chongo <was here> /\oo/\     http://www.isthe.com/chongo/
77 ## Share and enjoy!  :-)        http://www.isthe.com/chongo/tech/comp/calc/