高速列挙を使用する場合、配列内のすべての要素を通過する前に、つまり早期に終了する方法はありますか?
for (element in myArray)
{
//is there a way to exit before running through every element in myArray?
}
高速列挙を使用する場合、配列内のすべての要素を通過する前に、つまり早期に終了する方法はありますか?
for (element in myArray)
{
//is there a way to exit before running through every element in myArray?
}