`bool nextArgumentDoesNotReachEndOfArray = i + 1 < args.length;`
How can I declare it out of scope and reuse it in any scope that has `i` and `args.length` declared?
BoQsc via Digitalmars-d-learn Sat, 12 Feb 2022 04:41:03 -0800
`bool nextArgumentDoesNotReachEndOfArray = i + 1 < args.length;`
How can I declare it out of scope and reuse it in any scope that has `i` and `args.length` declared?