Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
type(ascii_t), | public | :: | ascii | ||||
type(bmp_t), | public, | allocatable | :: | bmp | |||
logical, | public | :: | epsilon_flag | = | .false. | ||
logical, | public | :: | is_switched_to_bmp | = | .false. | ||
logical, | public | :: | single_flag | = | .true. | ||
type(segment_t), | public, | allocatable | :: | sps(:) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(cube_t), | intent(inout) | :: | self | |||
character(len=*), | intent(in) | :: | symbol |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(cube_t), | intent(inout) | :: | self | |||
type(segment_t), | intent(in) | :: | segment |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(cube_t), | intent(inout) | :: | self | |||
type(segment_t), | intent(in) | :: | seglist(:) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(cube_t), | intent(inout) | :: | self | |||
type(cube_t), | intent(in) | :: | cube |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(cube_t), | intent(in) | :: | self | |||
type(segment_t), | intent(inout), | allocatable | :: | segments(:) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(cube_t), | intent(inout) | :: | self | |||
type(cube_t), | intent(in) | :: | cube |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(cube_t), | intent(inout) | :: | self | |||
type(segment_t), | intent(in) | :: | segment |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(cube_t), | intent(inout) | :: | self | |||
type(segment_t), | intent(in) | :: | seglist(:) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(cube_t), | intent(inout) | :: | self | |||
character(len=*), | intent(in) | :: | symbol |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(cube_t), | intent(in) | :: | self |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(cube_t), | intent(inout) | :: | self |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(cube_t), | intent(inout) | :: | self |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(cube_t), | intent(in) | :: | self |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(cube_t), | intent(in) | :: | self |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(cube_t), | intent(in) | :: | self |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(cube_t), | intent(inout) | :: | self |
type, public :: cube_t ! contains all planes (ascii, BMP and SPs) of Unicode. logical :: epsilon_flag = .false. logical :: single_flag = .true. logical :: is_switched_to_bmp = .false. type(ascii_t) :: ascii ! for U+0000 .. U+007F ASCII type(bmp_t), allocatable :: bmp ! for U+0000 .. U+FFFF BMP type(segment_t), allocatable :: sps(:) ! for U+10000 .. U+10FFFF SPs (SIP, SMP, etc.) contains procedure :: flag_epsilon => cube_flag__epsilon procedure :: is_flagged_epsilon => cube_flag__is_flagged_epsilon procedure :: cube_add__symbol procedure :: cube_add__segment procedure :: cube_add__segment_list procedure :: cube_add__cube procedure :: switch_bmp => cube__switch_ascii_to_bmp procedure :: cube2seg => cube__bmp2seg procedure :: print_sps => cube__dump_sps procedure :: invert => cube__invert procedure :: num => cube__number_of_flagged_bits procedure :: first => cube__first_codepoint generic :: add => cube_add__symbol, cube_add__segment, cube_add__segment_list, cube_add__cube end type cube_t