parse space-deliminated ip sequence (positive or negative)
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| character(len=*), | intent(in) | :: | line |
function parse_nums64(line) result(ints) character(len=*),intent(in) :: line integer(ip),dimension(:),allocatable :: ints ! array of integers ints = int(split(line, ' ')) end function parse_nums64