Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed arrows point from an interface to procedures which implement that interface. This could include the module procedures in a generic interface or the implementation in a submodule of an interface in a parent module.
Returns an array of integers given start, end, and increment values. If the
increment argument is not passed, default increment is 1. This procedure is
overloaded by the generic procedure range
.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer(kind=ik), | intent(in) | :: | start | Start value of the array |
||
integer(kind=ik), | intent(in) | :: | end | End value of the array |
||
integer(kind=ik), | intent(in), | optional | :: | increment | Array increment |
Returns an array of reals given start, end, and increment values. If the
increment argument is not passed, default increment is 1. This procedure is
overloaded by the generic procedure range
.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=rk), | intent(in) | :: | start | Start value of the array |
||
real(kind=rk), | intent(in) | :: | end | End value of the array |
||
real(kind=rk), | intent(in), | optional | :: | increment | Array increment |