{"id":240,"date":"2021-09-17T15:23:32","date_gmt":"1970-01-01T00:00:00","guid":{"rendered":"http:\/\/swift.tecc0.com\/?p=240"},"modified":"2021-09-17T15:23:32","modified_gmt":"1970-01-01T00:00:00","slug":"post-240","status":"publish","type":"post","link":"https:\/\/swift.tecc0.com\/?p=240","title":{"rendered":"Swift\u3067\u914d\u5217\u3092\u30bd\u30fc\u30c8(sort)\u3059\u308b\u65b9\u6cd5 : (\u6607\u9806\u30fb\u964d\u9806\u30fb\u9006\u9806)"},"content":{"rendered":"<h3>Swift\u3067\u914d\u5217\u3092\u6607\u9806(ascending)\u3067sort\u3059\u308b<\/h3>\n<pre class=\"lang:swift decode:true\">var intArray = [4, 2, 5, 1, 3]\nintArray.sort { $0 &lt; $1 }\nprint(intArray) \/\/ [1, 2, 3, 4, 5]\n\nvar strArray = [\"b\", \"d\", \"a\", \"e\", \"c\"]\nstrArray.sort { $0 &lt; $1 }\nprint(strArray) \/\/ [\"a\", \"b\", \"c\", \"d\", \"e\"]<\/pre>\n<h3>Swift\u3067\u914d\u5217\u3092\u964d\u9806(descending)\u3067sort\u3059\u308b<\/h3>\n<pre class=\"lang:swift decode:true\">var intArray = [4, 2, 5, 1, 3]\nintArray.sort { $0 &gt; $1 }\nprint(intArray) \/\/ [5, 4, 3, 2, 1]\n\nvar strArray = [\"b\", \"d\", \"a\", \"e\", \"c\"]\nstrArray.sort { $0 &gt; $1 }\nprint(strArray) \/\/ [\"e\", \"d\", \"c\", \"b\", \"a\"]<\/pre>\n<h3>Swift\u3067\u914d\u5217\u3092\u9006\u9806(reverse)\u306b\u3059\u308b<\/h3>\n<pre class=\"lang:swift decode:true\">var intArray = [4, 2, 5, 1, 3]\nintArray.sort { $0 &lt; $1 }\n\nprint(intArray) \/\/ [1, 2, 3, 4, 5]\nintArray.reverse()\nprint(intArray) \/\/ [5, 4, 3, 2, 1]\n\n\nvar strArray = [\"b\", \"d\", \"a\", \"e\", \"c\"]\nstrArray.sort { $0 &lt; $1 }\n\nprint(strArray) \/\/ [\"a\", \"b\", \"c\", \"d\", \"e\"]\nstrArray.reverse()\nprint(strArray) \/\/ [\"e\", \"d\", \"c\", \"b\", \"a\"]<\/pre>\n<p>\u3061\u306a\u307f\u306b <strong>array.reverse()<\/strong> \u307f\u305f\u3044\u306b\u3057\u3066\u3042\u3052\u308b\u5fc5\u8981\u304c\u3042\u308b\u3088\u3002<\/p>\n<p>\u899a\u3048\u3066\u304a\u3053\u3046\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Swift\u3067\u914d\u5217\u3092\u6607\u9806(ascending)\u3067sort\u3059\u308b var intArray = [4, 2, 5, 1, 3] intArray.sort { $0 &lt; $1 } print(intArray) \/\/ [&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[17],"tags":[],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/swift.tecc0.com\/index.php?rest_route=\/wp\/v2\/posts\/240"}],"collection":[{"href":"https:\/\/swift.tecc0.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/swift.tecc0.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/swift.tecc0.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/swift.tecc0.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=240"}],"version-history":[{"count":10,"href":"https:\/\/swift.tecc0.com\/index.php?rest_route=\/wp\/v2\/posts\/240\/revisions"}],"predecessor-version":[{"id":804,"href":"https:\/\/swift.tecc0.com\/index.php?rest_route=\/wp\/v2\/posts\/240\/revisions\/804"}],"wp:attachment":[{"href":"https:\/\/swift.tecc0.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=240"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/swift.tecc0.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=240"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/swift.tecc0.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=240"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}