It&#39;s a bad habit of mine, I guess, to err on the side of suggesting conservative changes on the assumption that it&#39;ll be maximally acceptable. If there&#39;s appetite for a more serious renaming, and as you say these are considered relatively rarely used, then it&#39;s a world of possibility!<br><br>We could do as Shawn suggested and follow precedent in some other languages by moving these functions out of the global scope. Perhaps these will meet with some satisfaction:<br><br>```<br>Memory.footprint(of:)<br>Memory.alignment(of:)<br>Memory.spacing(of:)<br>```<br><div class="gmail_quote"><div dir="ltr">On Sun, May 1, 2016 at 21:41 Dave Abrahams via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br>
on Sun May 01 2016, Xiaodi Wu &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:<br>
<br>
&gt; On Sun, May 1, 2016 at 7:00 PM, Dave Abrahams via swift-evolution<br>
&gt; &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:<br>
&gt;<br>
&gt;     on Thu Apr 28 2016, Xiaodi Wu<br>
&gt;     &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:<br>
&gt;<br>
&gt;     &gt; We all know and love sizeof(), but given that it&#39;s different from its C<br>
&gt;     &gt; counterpart anyway, shouldn&#39;t these conform to Swift naming guidelines? In<br>
&gt;     other<br>
&gt;     &gt; words, after SE-0006, shouldn&#39;t these names be as follows?<br>
&gt;     &gt;<br>
&gt;     &gt; ```<br>
&gt;     &gt; size&lt;T&gt;(of: T.Type)<br>
&gt;     &gt; size&lt;T&gt;(ofValue: T)<br>
&gt;     &gt; stride&lt;T&gt;(of: T.Type)<br>
&gt;     &gt; stride&lt;T&gt;(ofValue: T)<br>
&gt;     &gt; align&lt;T&gt;(of: T.Type)<br>
&gt;     &gt; align&lt;T&gt;(ofValue: T)<br>
&gt;     &gt; ```<br>
&gt;     &gt;<br>
&gt;     &gt; There are obvious issues with two different things named `stride`, but IMO<br>
&gt;     &gt; that&#39;s best addressed by renaming one of them; the real problem is that<br>
&gt;     the word<br>
&gt;     &gt; stride is used in two different ways already. Thoughts?<br>
&gt;<br>
&gt;     These functions correspond to C and LLVM primitives and we consciously<br>
&gt;     kept those names because they are terms of art.<br>
&gt;<br>
&gt; I recognize that this was the intention behind preserving the names as-is. The<br>
&gt; thought process behind proposing a renaming was as follows:<br>
&gt;<br>
&gt; * The Swift counterpart to C `sizeof()` is `strideof(_:)`. Thus, although the<br>
&gt; *names* are treated as terms of art, not all of them are used to mean the art<br>
&gt; for which they are terms (if you will).<br>
<br>
The specific meaning of sizeof in Swift comes from either LLVM or from<br>
SIL, IIRC.  It predates me, but it&#39;s supposed to correspond to what the<br>
IRGen level of the compiler calls “sizeof.”<br>
<br>
&gt; To reinforce the separation between C primitives and these Swift<br>
&gt; functions, C `offsetof()` has no Swift counterpart.<br>
<br>
Yes, that&#39;s part of the reason I&#39;d very much like to choose more<br>
descriptive names if we are going to move away from the current<br>
spellings.  moving the parenthesis is a pretty weak cue that this thing<br>
might be slightly different.<br>
<br>
&gt; * A survey of other languages suggests that, as terms of art, these names are<br>
&gt; not always treated as a single word but as a phrase, by which I mean that the<br>
&gt; preposition &quot;of&quot; can be subject to language-specific naming conventions. For<br>
&gt; example, in Rust you have `size_of()`, `size_of_val()`, etc.; in the .NET<br>
&gt; Framework, you have the `Marshal.SizeOf()` method; and even in LLVM you<br>
&gt; apparently have (and this is based just on googling--my level of familiarity<br>
&gt; with LLVM is low to nonexistent) struct `AlignOf&lt;T&gt;`.<br>
&gt;<br>
&gt;     I don&#39;t know that<br>
&gt;<br>
&gt;     size(of: T.self)<br>
&gt;<br>
&gt;     is particularly descriptive usage, and if we were going to change them<br>
&gt;     so they didn&#39;t look like sizeof, strideof, alignof I&#39;d want to make them<br>
&gt;     far more descriptive. E.g.<br>
&gt;<br>
&gt;     memoryFootprint(Int.self)<br>
&gt;<br>
&gt;     or<br>
&gt;<br>
&gt;     bytesRequiredForStorage(Int.self)<br>
&gt;     standardByteAlignment(Int.self)<br>
&gt;     bytesBetweenArrayElements(Int.self)<br>
&gt;<br>
&gt;     etc.<br>
&gt;<br>
&gt; To my mind, `size(of:)` is not moving away from using a term of art but rather<br>
&gt; following existing precedent in conforming use of the preposition to<br>
&gt; language-specific conventions.<br>
<br>
The same argument could be made for “mapped” and “reduced.”<br>
<br>
&gt; Like you, I would be hesitant to suggest moving away from these terms<br>
&gt; of art altogether.<br>
<br>
You misunderstand me.  I&#39;m not hesitant about that at all.  What I<br>
dislike is the idea of being close-to-but-not-quite-the-same as the<br>
source terms to which they correspond.  The original terms are not<br>
great, and these facilities are seldom used.  They can afford to be<br>
longer and more descriptive.<br>
<br>
&gt; I do think, though, that moving the preposition has the bonus of<br>
&gt; visually suggesting however subtly that `size(of:) ` might have a<br>
&gt; Swift-specific twist that makes it not a drop-in equivalent for C<br>
&gt; `sizeof()`.<br>
<br>
I don&#39;t think subtlety is a virtue in this case.<br>
<br>
--<br>
Dave<br>
<br>
_______________________________________________<br>
swift-evolution mailing list<br>
<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><br>
<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br>
</blockquote></div>