<div dir="ltr"><div>The code below doesn&#39;t compile since there is no exponential function (exp) that works on all FloatingPoint or BinaryFloatingPoint types, also no protocol seems to define the power function or the constant e, although they do define for example: basic arithmetic operators, squareRoot() and pi.<br></div><div><br></div><div>extension BinaryFloatingPoint {</div><div>    func sigmoid() -&gt; Self {</div><div>        return 1.0 / (1.0 + exp(-self))</div><div>    }</div><div>}</div><div><br></div><div>I could, but don&#39;t want to write two free funcs sigmoid(Float) -&gt; Float and sigmoid(Double) -&gt; Double, because I need to use x.sigmoid() in several places where x is of a generic type (a BinaryFloatingPoint).<br></div><div><br></div><div>More generally: I would have the same problem if I needed eg sin or cos. Are there any particular reason why, given a generic BinaryFloatingPoint, I cannot use sin or cos, while I can use pi and squareRoot()? It does seem a bit arbitrary.</div><div><br></div><div>Any ideas on how to implement a sigmoid() that works for all BinaryFloatingPoint types?</div><div><br></div><div>/Jens</div></div>