summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorian.bertolacci <ibertolacci@cray.com>2015-07-15 12:08:15 -0700
committerian.bertolacci <ibertolacci@cray.com>2015-07-15 12:08:15 -0700
commit37257b592275a5ddb41d7e1d6545aa039b1a35c3 (patch)
treeade0344b774c46a269b0e1bf25e60cccbe961d2f
parent7640ea4a306b979912d63d646864da824103c082 (diff)
epiphany on ref returns. lead to better example of ref returns and then also a description of ref vars
-rw-r--r--chapel.html.markdown28
1 files changed, 22 insertions, 6 deletions
diff --git a/chapel.html.markdown b/chapel.html.markdown
index 8b41dc32..77efbf5a 100644
--- a/chapel.html.markdown
+++ b/chapel.html.markdown
@@ -77,6 +77,15 @@ config param paramCmdLineArg: bool = false;
writeln( varCmdLineArg, ", ", constCmdLineArg, ", ", paramCmdLineArg );
// Set config with --set paramCmdLineArg=value at compile time
+// refs operate much like a reference in C++
+var actual = 10;
+ref refToActual = actual; // refToActual refers to actual
+writeln( actual, " == ", refToActual ); // prints the same value
+actual = -123; // modify actual (which refToActual refers to)
+writeln( actual, " == ", refToActual ); // prints the same value
+refToActual = 99999999; // modify what refToActual refers to (which is actual)
+writeln( actual, " == ", refToActual ); // prints the same value
+
// Math operators
var a: int, thisInt = 1234, thatInt = 5678;
a = thisInt + thatInt; // Addition
@@ -426,12 +435,19 @@ intentsProc( inVar, outVar, inoutVar, refVar );
writeln( "Outside After: ", (inVar, outVar, inoutVar, refVar) );
// Similarly we can define intents on the return type
-proc makeArray( elems: int, startNumber: int ) ref : [1..#elems] int {
- var array: [1..#elems] int;
- for idx in array.domain do array[idx] = startNumber + idx;
- return array;
-}
-writeln( makeArray( 10, -1 ) );
+// refElement returns a reference to an element of array
+proc refElement( array : [?D] ?T, idx ) ref : T {
+ return array[ idx ]; // returns a reference to
+}
+
+var myChangingArray : [1..5] int = [1,2,3,4,5];
+writeln( myChangingArray );
+// Store reference to element in ref variable
+ref refToElem = refElement( myChangingArray, 5 );
+writeln( refToElem );
+refToElem = -2; // modify reference which modifies actual value in array
+writeln( refToElem );
+writeln( myChangingArray );
// This makes more practical sense for class methods where references to
// elements in a data-structure are returned via a method or iterator