<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class="">
I corrected before inserting.<br class="">
<div><br class="">
<blockquote type="cite" class="">
<div class="">On Nov 16, 2022, at 7:41 PM, John Rose <<a href="mailto:john.r.rose@oracle.com" class="">john.r.rose@oracle.com</a>> wrote:</div>
<br class="Apple-interchange-newline">
<div class="">
<div class="">
<div style="font-family: sans-serif;" class="">
<div class="markdown" style="white-space: normal;">
<p dir="auto" class="">On 16 Nov 2022, at 11:10, Alex Buckley wrote:</p>
</div>
<div class="plaintext" style="white-space: normal;">
<blockquote style="margin: 0 0 5px; padding-left: 5px; border-left: 2px solid #777777; color: #777777;" class="">
<p dir="auto" class="">… <br class="">
For example, the following code contains a template expression that uses the template processor `RAW`, which simply yields the `StringTemplate` passed to it:</p>
<p dir="auto" class="">int x = 10; <br class="">
int y = 20; <br class="">
StringTemplate st = RAW."\{x} + \{y} = \{x + y}"; <br class="">
List<String> fragments = st.fragments(); <br class="">
List<Object> values = st.values();</p>
<p dir="auto" class="">`fragments` will be equivalent to `List.of(" + ", " = ")` and `values` will be the equivalent of `List.of(10, 20, 30)`.
<br class="">
… <br class="">
To preserve the semantics of string templates and text block templates, the list returned by `fragments()` must be one element larger than the list returned by `values()`.</p>
</blockquote>
</div>
<div class="markdown" style="white-space: normal;">
<p dir="auto" class="">And yet, in the example given above, the list of fragments
<code style="margin: 0; padding: 0 0.4em; border-radius: 3px; background-color: #F7F7F7;" class="">
List.of(" + ", " = ")</code> is one element <em class="">smaller</em> than the list of values
<code style="margin: 0; padding: 0 0.4em; border-radius: 3px; background-color: #F7F7F7;" class="">
List.of(10, 20, 30)</code>. The example is wrong. It’s worth a note in the doc that if an interpolated expression begins and/or ends the template, there will be a zero length fragment at the beginning or end of the fragments list.</p>
</div>
</div>
</div>
</div>
</blockquote>
</div>
<br class="">
</body>
</html>