This is the css_pdt parameterized type for generating instances of container of scalar of string objects of kind any supported by the processor (e.g., SK, SKA, SKD , or SKU).
The css_pdt container is widely known as varying string or string container within the Fortran language.
The constructor of this derived type takes the following arguments.
- Parameters
-
[in] | val | : The input scalar or array of arbitrary rank of type character of kind any supported by the processor (e.g., SK, SKA, SKD , or SKU).
|
[in] | trimmed | : The input scalar or array of the same shape as the input val , of type logical of default kind LK.
If .true. , the corresponding elements of the input val will not be trimmed.
Setting this argument to .true. will lead to better runtime performance.
(optional, default = .false. , i.e., all input val will be left-adjusted and trimmed). |
- Returns
container
: The output object of type css_pdt(kind(val) of the same kind, rank, and shape as the input val
, each element of which contains the corresponding element of the input val
.
Possible calling interfaces ⛓
type(css_pdt(kind("a"))), allocatable :: containers(:)
type(css_pdt(kind("a"))) :: container
container
= css_pdt(val, trimmed
= trimmed)
containers
= css_pdt([
character(
3) ::
"a",
"aa",
"aaa"])
containers
= css_pdt([
character(
3) ::
"a",
"aa",
"aaa"], trimmed
= .false._LK)
This module contains the derived types for generating allocatable containers of scalar,...
This is the css_pdt parameterized type for generating instances of container of scalar of string obje...
- See also
- css_pdt
cvs_pdt
cms_pdt
ccs_pdt
css_type
cvs_type
cms_type
ccs_type
Example usage ⛓
10 type(display_type) :: disp
18 type(css_pdt),
allocatable :: scalar, vector(:), matrix(:,:), cube(:,:,:)
21 call disp%show(
"scalar = css_pdt(SKG_'ParaMonte')")
22 scalar
= css_pdt(SKG_
'ParaMonte')
24 call disp%show( scalar , deliml
= SK_
"""" )
28 call disp%show(
"vector = css_pdt([character(3,SKG) :: 'a', 'aa', 'aaa'])")
29 vector
= css_pdt([
character(
3,SKG) ::
'a',
'aa',
'aaa'])
31 call disp%show( vector , deliml
= SK_
"""" )
35 call disp%show(
"vector = css_pdt([character(3,SKG) :: 'a', 'aa', 'aaa'], trimmed = .false._LK)")
36 vector
= css_pdt([
character(
3,SKG) ::
'a',
'aa',
'aaa'], trimmed
= .false._LK)
38 call disp%show( vector , deliml
= SK_
"""" )
42 call disp%show(
"vector = css_pdt([character(3,SKG) :: 'a', 'aa', 'aaa'], trimmed = .true._LK) ! This will avoid the automatic application of `trim()` to the input string vector.")
43 vector
= css_pdt([
character(
3,SKG) ::
'a',
'aa',
'aaa'], trimmed
= .true._LK)
45 call disp%show( vector , deliml
= SK_
"""" )
49 call disp%show(
"matrix = css_pdt( reshape(getCharVec(getRange(SKG_'A', SKG_'X')), shape = [3, 8]) )")
52 call disp%show( matrix , deliml
= SK_
"""" )
56 call disp%show(
"cube = css_pdt( reshape(getCharVec(getRange(SKG_'A', SKG_'X')), shape = [2, 3, 4]) )")
59 call disp%show( cube , deliml
= SK_
"""" )
64 call disp%show(
"PDT examples are disabled in the current ParaMonte library configuration.")
Generate minimally-spaced character, integer, real sequences or sequences at fixed intervals of size ...
This is a generic method of the derived type display_type with pass attribute.
This is a generic method of the derived type display_type with pass attribute.
Generate and return a vector of single-characters each element of which corresponds to one character ...
This module contains procedures and generic interfaces for generating ranges of discrete character,...
This module contains classes and procedures for input/output (IO) or generic display operations on st...
type(display_type) disp
This is a scalar module variable an object of type display_type for general display.
This module defines the relevant Fortran kind type-parameters frequently used in the ParaMonte librar...
integer, parameter LK
The default logical kind in the ParaMonte library: kind(.true.) in Fortran, kind(....
integer, parameter IK
The default integer kind in the ParaMonte library: int32 in Fortran, c_int32_t in C-Fortran Interoper...
integer, parameter SK
The default character kind in the ParaMonte library: kind("a") in Fortran, c_char in C-Fortran Intero...
This module contains classes and procedures for various string manipulations and inquiries.
Generate and return an object of type display_type.
Example Unix compile command via Intel ifort
compiler ⛓
3ifort -fpp -standard-semantics -O3 -Wl,-rpath,../../../lib -I../../../inc main.F90 ../../../lib/libparamonte* -o main.exe
Example Windows Batch compile command via Intel ifort
compiler ⛓
2set PATH=..\..\..\lib;%PATH%
3ifort /fpp /standard-semantics /O3 /I:..\..\..\include main.F90 ..\..\..\lib\libparamonte*.lib /exe:main.exe
Example Unix / MinGW compile command via GNU gfortran
compiler ⛓
3gfortran -cpp -ffree-line-length-none -O3 -Wl,-rpath,../../../lib -I../../../inc main.F90 ../../../lib/libparamonte* -o main.exe
Example output ⛓ 1PDT examples are disabled in the current ParaMonte library configuration.
- Test:
- test_pm_container
Final Remarks ⛓
If you believe this algorithm or its documentation can be improved, we appreciate your contribution and help to edit this page's documentation and source file on GitHub.
For details on the naming abbreviations, see this page.
For details on the naming conventions, see this page.
This software is distributed under the MIT license with additional terms outlined below.
-
If you use any parts or concepts from this library to any extent, please acknowledge the usage by citing the relevant publications of the ParaMonte library.
-
If you regenerate any parts/ideas from this library in a programming environment other than those currently supported by this ParaMonte library (i.e., other than C, C++, Fortran, MATLAB, Python, R), please also ask the end users to cite this original ParaMonte library.
This software is available to the public under a highly permissive license.
Help us justify its continued development and maintenance by acknowledging its benefit to society, distributing it, and contributing to it.
- Copyright
- Computational Data Science Lab
- Author:
- Fatemeh Bagheri, Tuesday, April 30, 2019, 12:58 PM, SEIR, UTA Amir Shahmoradi, September 1, 2017, 12:00 AM, Institute for Computational Engineering and Sciences (ICES), The University of Texas Austin
Definition at line 783 of file pm_container.F90.