<div dir="ltr">This protocol is present in C++ <a href="http://en.cppreference.com/w/cpp/concept/DefaultConstructible">http://en.cppreference.com/w/cpp/concept/DefaultConstructible</a> as well as in Rust <a href="https://doc.rust-lang.org/std/default/">https://doc.rust-lang.org/std/default/</a><div><br></div><div>It&#39;s the identity element/unit of a monoid or a zero.<br><div><br></div><div><div>The Swift implementation is very simple (I&#39;m open to different names)<br></div><div><br></div><div>protocol DefaultConstructible {</div><div>    init() </div><div>}</div><div><br></div><div>A lot of the standard types could then be made to conform to this protocol. These include all the numeric types, collection types (array, set, dict), string, basically at least every type that currently has a constructor without any arguments.</div><div><br></div><div>The RangeReplaceableCollection protocol would inherit from this protocol as well. <br></div><div><br></div><div>This protocol would simplify a lot of generic algorithms where you need the concept of a zero (which shows up a lot)</div></div><div><br></div><div>Once introduced, Sequence could define an alternative implementation of reduce where the initial result doesn&#39;t need to be provided as it can be default constructed.</div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div></div></div>