<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Windows-1252">
<meta name="Generator" content="Microsoft Word 15 (filtered medium)">
<style><!--
/* Font Definitions */
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:"Calibri Light";
        panose-1:2 15 3 2 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        font-size:11.0pt;
        font-family:"Calibri",sans-serif;}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
p.MsoNoSpacing, li.MsoNoSpacing, div.MsoNoSpacing
        {mso-style-priority:1;
        margin:0in;
        font-size:11.0pt;
        font-family:"Calibri",sans-serif;}
.MsoChpDefault
        {mso-style-type:export-only;}
@page WordSection1
        {size:8.5in 11.0in;
        margin:1.0in 1.0in 1.0in 1.0in;}
div.WordSection1
        {page:WordSection1;}
--></style>
</head>
<body lang="EN-US" link="blue" vlink="#954F72" style="word-wrap:break-word">
<div class="WordSection1">
<p class="MsoNormal">Hi Alexandre, Jon,</p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">> Semicolons can be used to send a cascade of messages to the original receiver.<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Note it’s not immediately clear what the “original receiver” is (at least to me); check this:<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">#(1 2 3) negated select: #odd; collect: #cubed "---> #(-1 -8 -27)"<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">The “original receiver” is the result of `#(1 2 3) negated` and not `#(1 2 3)` as one might think.<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">In light of this the quoted example `BoxedMorph new :: color: Color blue; openInWorld.` is misleading, imo, because it suggests the double colon is relevant here but it’s not: this gives the same result:<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">BoxedMorph new color: Color blue; openInWorld.<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">> It is sometimes useful to send messages to the result of a message send.<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Each message is sent to the result of the previous message send by default (taking precedence into account indeed). The double colon effectively separates the keyword messages so that they act similarly like unary messages when chained:<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">#(1 2 3) negated select: #odd :: collect: #cubed "---> #(-1 -27)"<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">I think a more relevant BoxedMorph example would be (whether meaningful or not):</p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">BoxedMorph newFrom: BoxedMorph new :: color: Color blue; openInWorld.</p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">This wouldn’t work without the double colon.</p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Best,</p>
<p class="MsoNormal">Jaromir</p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNoSpacing"><span lang="CS">--</span><o:p></o:p></p>
<p class="MsoNoSpacing"><strong><span style="font-family:"Calibri Light",sans-serif;color:#333333;font-weight:normal">Jaromír Matas</span></strong><span style="font-family:"Calibri Light",sans-serif;color:#555555"><br>
</span><span style="font-family:"Calibri Light",sans-serif;color:#2E75B6">mail@jaromir.net</span><span style="font-family:"Calibri Light",sans-serif;color:#555555"><o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:#8FAADC"><o:p> </o:p></span></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<div style="mso-element:para-border-div;border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in">
<p class="MsoNormal" style="border:none;padding:0in"><b>From: </b><a href="mailto:cuis-dev@lists.cuis.st">Alexandre Rousseau via Cuis-dev</a><br>
<b>Sent: </b>Friday, March 10, 2023 7:52<br>
<b>To: </b><a href="mailto:cuis-dev@lists.cuis.st">Discussion of Cuis Smalltalk</a><br>
<b>Cc: </b><a href="mailto:yalexr@gmail.com">Alexandre Rousseau</a>; <a href="mailto:jhylands@gmail.com">
jhylands@gmail.com</a><br>
<b>Subject: </b>Re: [Cuis-dev] What is the meaning of "::" in code examples ?</p>
</div>
<p class="MsoNormal"><o:p> </o:p></p>
<div>
<p class="MsoNormal"> Thanks for the link.<o:p></o:p></p>
<div>
<p class="MsoNormal"><o:p> </o:p></p>
</div>
<div>
<blockquote style="border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-top:5.0pt;margin-right:0in;margin-bottom:5.0pt">
<p class="MsoNormal" style="margin-left:9.6pt">* Cascades<br>
There are two kinds of message cascades.<o:p></o:p></p>
</blockquote>
<blockquote style="border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-top:5.0pt;margin-right:0in;margin-bottom:5.0pt">
<p class="MsoNormal" style="margin-left:9.6pt"><br>
Semicolons can be used to send a cascade of messages to the original<br>
receiver. In "Transcript show: 'hello'; cr" we first send the keyword<br>
message #show: 'hello' to the receiver Transcript, and then we send<br>
the unary message #cr to the same receiver.<o:p></o:p></p>
</blockquote>
<blockquote style="border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-top:5.0pt;margin-right:0in;margin-bottom:5.0pt">
<p class="MsoNormal" style="margin-left:9.6pt"><br>
It is sometimes useful to send messages to the result of a message<br>
send. In "BoxedMorph new :: color: Color blue; openInWorld.", we send<br>
succeeding messages to the new BoxedMorph instance, not the BoxedMorph<br>
class.<o:p></o:p></p>
</blockquote>
<div>
<p class="MsoNormal"><o:p> </o:p></p>
</div>
<div>
<p class="MsoNormal">So,<o:p></o:p></p>
</div>
<blockquote style="border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-top:5.0pt;margin-right:0in;margin-bottom:5.0pt">
<p class="MsoNormal" style="margin-left:9.6pt">lay1 beRow :: borderWidth: 1 :: borderColor: (Color black) .<o:p></o:p></p>
</blockquote>
<div>
<p class="MsoNormal"><o:p> </o:p></p>
</div>
<div>
<p class="MsoNormal">can also be expressed as<o:p></o:p></p>
</div>
<blockquote style="border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-top:5.0pt;margin-right:0in;margin-bottom:5.0pt">
<p class="MsoNormal" style="margin-left:9.6pt">lay1 beRow; borderWidth: 1; borderColor: (Color black).<o:p></o:p></p>
</blockquote>
<div>
<p class="MsoNormal">since all messages are intended for the original receiver (lay1).<o:p></o:p></p>
</div>
<div>
<p class="MsoNormal"><o:p> </o:p></p>
</div>
<div>
<p class="MsoNormal">And since "beRow" also returns the original object (lay1),<o:p></o:p></p>
</div>
<div>
<blockquote style="border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-top:5.0pt;margin-right:0in;margin-bottom:5.0pt">
<p class="MsoNormal" style="margin-left:9.6pt">lay1 beRow :: borderWidth: 1 :: borderColor: (Color black) .<o:p></o:p></p>
</blockquote>
<div>
<p class="MsoNormal">works as well.<o:p></o:p></p>
</div>
</div>
<div>
<p class="MsoNormal"><o:p> </o:p></p>
</div>
<div>
<p class="MsoNormal">A.<o:p></o:p></p>
</div>
<div>
<p class="MsoNormal"><o:p> </o:p></p>
</div>
<div>
<p class="MsoNormal">> According to this page:<br>
> <br>
> <a href="https://cuis-smalltalk.github.io/TheCuisBook/Summary-of-Syntax.html" target="_blank">https://cuis-smalltalk.github.io/TheCuisBook/Summary-of-Syntax.html</a><br>
> <br>
> Double-colon sends the message to the result of the previous expression. I<br>
> would guess that would make it functionally equivalent to putting the<br>
> previous expression in parens.<br>
> <br>
> So:<br>
> <br>
> lay1 beRow :: borderWidth: 1 :: borderColor: (Color black) .<br>
> <br>
> would be the same as:<br>
> <br>
> ((lay1 beRow) borderWidth: 1) borderColor: (Color black) .<br>
> <br>
> Unless I'm missing something...<br>
> <br>
> - Jon<o:p></o:p></p>
</div>
</div>
</div>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
</div>
</body>
</html>