エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
記事へのコメント2件
- 注目コメント
- 新着コメント
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Swift: Multiple intervals in single switch-case using tuple
Have a code like: switch (indexPath.section, indexPath.row) { case (0, 1...5): println("in range"... Have a code like: switch (indexPath.section, indexPath.row) { case (0, 1...5): println("in range") default: println("not at all") } The question is can I use multiple intervals in second tuple value? for non-tuple switch it can be done pretty easily like switch indexPath.section { case 0: switch indexPath.row { case 1...5, 8...10, 30...33: println("in range") default: println("not at all") } defau
2016/10/12 リンク