<html>
  <head>
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  </head>
  <body>
<p style="font-size: 11px ; line-height: normal ; font-family: &quot;menlo&quot;">print(UInt8.min) //0</p><p style="font-size: 11px ; line-height: normal ; font-family: &quot;menlo&quot;">print(UInt8.max) //255</p><p style="font-size: 11px ; line-height: normal ; font-family: &quot;menlo&quot;"><br /></p><p style="font-size: 11px ; line-height: normal ; font-family: &quot;menlo&quot;">//Is there an easy way to loop between all values</p><p style="font-size: 11px ; line-height: normal ; font-family: &quot;menlo&quot;">//between (and including both) UInt8.min and UInt8.max?</p><p style="font-size: 11px ; line-height: normal ; font-family: &quot;menlo&quot;"><br /></p><p style="font-size: 11px ; line-height: normal ; font-family: &quot;menlo&quot;">//This doesn't work.</p><p style="font-size: 11px ; line-height: normal ; font-family: &quot;menlo&quot;">//Runtime crash because UInt8.max has no successor.</p><p style="font-size: 11px ; line-height: normal ; font-family: &quot;menlo&quot;">for i in UInt8.min...UInt8.max {</p><p style="font-size: 11px ; line-height: normal ; font-family: &quot;menlo&quot;">&nbsp; &nbsp; print(i)</p><p style="font-size: 11px ; line-height: normal ; font-family: &quot;menlo&quot;">}</p><div><br /></div>  </body>
</html>