This is the derived type for generating a container of a vector component of type integer
of default kind IK.
The css_type 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 default kind SK.
|
[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., the trailing blanks in all input val will be trimmed). |
- Returns
container
: The output object of type css_type 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_type), allocatable :: containers(:)
type(css_type) :: container
container
= css_type(val, trimmed
= trimmed)
containers
= css_type([
character(
3, SK) ::
"a",
"aa",
"aaa"])
containers
= css_type([
character(
3, SK) ::
"a",
"aa",
"aaa"], trimmed
= .false._LK)
This module contains the derived types for generating allocatable containers of scalar,...
This module defines the relevant Fortran kind type-parameters frequently used in the ParaMonte librar...
integer, parameter SK
The default character kind in the ParaMonte library: kind("a") in Fortran, c_char in C-Fortran Intero...
This is the css_type type for generating instances of container of scalar of string objects.
- See also
- css_pdt
cvs_pdt
cms_pdt
ccs_pdt
css_type
cvs_type
cms_type
ccs_type
Example usage ⛓
9 type(display_type) :: disp
16 type(css_type),
allocatable :: scalar, vector(:), matrix(:,:), cube(:,:,:)
19 call disp%show(
"scalar = css_type(SKG_'ParaMonte')")
22 call disp%show( scalar , deliml
= SK_
"""" )
26 call disp%show(
"vector = css_type([character(3,SKG) :: 'a', 'aa', 'aaa'])")
27 vector
= css_type([
character(
3,SKG) ::
'a',
'aa',
'aaa'])
29 call disp%show( vector , deliml
= SK_
"""" )
33 call disp%show(
"vector = css_type([character(3,SKG) :: 'a', 'aa', 'aaa'], trimmed = .false._LK)")
34 vector
= css_type([
character(
3,SKG) ::
'a',
'aa',
'aaa'], trimmed
= .false._LK)
36 call disp%show( vector , deliml
= SK_
"""" )
40 call disp%show(
"vector = css_type([character(3,SKG) :: 'a', 'aa', 'aaa'], trimmed = .true._LK) ! This will avoid the automatic application of `trim()` to the input string vector.")
41 vector
= css_type([
character(
3,SKG) ::
'a',
'aa',
'aaa'], trimmed
= .true._LK)
43 call disp%show( vector , deliml
= SK_
"""" )
47 call disp%show(
"matrix = css_type( reshape(getCharVec(getRange(SKG_'A', SKG_'X')), shape = [3, 8]) )")
50 call disp%show( matrix , deliml
= SK_
"""" )
54 call disp%show(
"cube = css_type( reshape(getCharVec(getRange(SKG_'A', SKG_'X')), shape = [2, 3, 4]) )")
57 call disp%show( cube , deliml
= SK_
"""" )
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.
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...
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 ⛓
7vector
= css_type([
character(
3,SKG) ::
'a',
'aa',
'aaa'])
12vector
= css_type([
character(
3,SKG) ::
'a',
'aa',
'aaa'], trimmed
= .false._LK)
17vector
= css_type([
character(
3,SKG) ::
'a',
'aa',
'aaa'], trimmed
= .true._LK)
24"A",
"D",
"G",
"J",
"M",
"P",
"S",
"V"
25"B",
"E",
"H",
"K",
"N",
"Q",
"T",
"W"
26"C",
"F",
"I",
"L",
"O",
"R",
"U",
"X"
- 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 566 of file pm_container.F90.