Method module.
Data Types | |
| interface | method |
| Provides properties and instance methods for the method class. This class is a wrapper for any procedure (subroutine or function). More... | |
|
private |
Dispose resources associated with the bound type.
| [in,out] | this | The type bound to the method |
Remarks
Definition at line 868 of file Method.f90.
|
private |
Bound procedure to invoke a method.
| [in] | this | The type bound to the method |
Examples
Remarks
Remarks
Definition at line 354 of file Method.f90.
|
private |
Bound procedure to invoke a method.
| [in] | this | The type bound to the method |
| [in] | a1 | dummy argument |
Examples
The first example demonstrate how to invoke the method by passing the arguments to the invoke procedure.
Alternatively, on can also set the arguments directly from the method constructor.
Remarks
Definition at line 499 of file Method.f90.
|
private |
Bound procedure to invoke a method.
| [in] | this | The type bound to the method |
| [in] | a1 | dummy argument |
| [in] | a2 | dummy argument |
Examples
The first example demonstrate how to invoke the method by passing the arguments to the invoke procedure.
Alternatively, on can also set the arguments directly from the method constructor.
Remarks
Definition at line 542 of file Method.f90.
|
private |
Bound procedure to invoke a method.
| [in] | this | The type bound to the method |
| [in] | a1 | dummy argument |
| [in] | a2 | dummy argument |
| [in] | a3 | dummy argument |
Examples
The first example demonstrate how to invoke the method by passing the arguments to the invoke procedure.
Alternatively, on can also set the arguments directly from the method constructor.
Remarks
Definition at line 587 of file Method.f90.
|
private |
Bound procedure to invoke a method.
| [in] | this | The type bound to the method |
| [in] | a1 | dummy argument |
| [in] | a2 | dummy argument |
| [in] | a3 | dummy argument |
| [in] | a4 | dummy argument |
Examples
The first example demonstrate how to invoke the method by passing the arguments to the invoke procedure.
Alternatively, on can also set the arguments directly from the method constructor.
Remarks
Definition at line 638 of file Method.f90.
|
private |
Bound procedure to invoke a method.
| [in] | this | The type bound to the method |
| [in] | a1 | dummy argument |
| [in] | a2 | dummy argument |
| [in] | a3 | dummy argument |
| [in] | a4 | dummy argument |
| [in] | a5 | dummy argument |
Examples
The first example demonstrate how to invoke the method by passing the arguments to the invoke procedure.
Alternatively, on can also set the arguments directly from the method constructor.
Remarks
Definition at line 692 of file Method.f90.
|
private |
Bound procedure to invoke a method.
| [in] | this | The type bound to the method |
| [in] | a1 | dummy argument |
| [in] | a2 | dummy argument |
| [in] | a3 | dummy argument |
| [in] | a4 | dummy argument |
| [in] | a5 | dummy argument |
| [in] | a6 | dummy argument |
Examples
The first example demonstrate how to invoke the method by passing the arguments to the invoke procedure.
Alternatively, on can also set the arguments directly from the method constructor.
Remarks
Definition at line 749 of file Method.f90.
|
private |
Bound procedure to invoke a method.
| [in] | this | The type bound to the method |
| [in] | a1 | dummy argument |
| [in] | a2 | dummy argument |
| [in] | a3 | dummy argument |
| [in] | a4 | dummy argument |
| [in] | a5 | dummy argument |
| [in] | a6 | dummy argument |
| [in] | a7 | dummy argument |
Examples
The first example demonstrate how to invoke the method by passing the arguments to the invoke procedure.
Alternatively, on can also set the arguments directly from the method constructor.
Remarks
Definition at line 809 of file Method.f90.
|
private |
Assignment overloading. Assign a method to another method.
| [in,out] | lhs | The target method |
| [in] | rhs | The source method |
Remarks
Definition at line 844 of file Method.f90.