Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
integer(kind=int64), | public | :: | b(0:BMP_SIZE-1) | = | 0_int64 |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(bmp_t), | intent(inout) | :: | self | |||
integer(kind=int32), | intent(in) | :: | min_cp | |||
integer(kind=int32), | intent(in) | :: | max_cp |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(bmp_t), | intent(inout) | :: | self | |||
character(len=*), | intent(in) | :: | chara |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(bmp_t), | intent(inout) | :: | self | |||
integer(kind=int32), | intent(in) | :: | cp |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(bmp_t), | intent(inout) | :: | self | |||
character(len=*), | intent(in) | :: | chara |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(bmp_t), | intent(inout) | :: | self | |||
integer(kind=int32), | intent(in) | :: | cp |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(bmp_t), | intent(inout) | :: | self | |||
integer(kind=int32), | intent(in) | :: | min_cp | |||
integer(kind=int32), | intent(in) | :: | max_cp |
type, public :: bmp_t integer(int64) :: b(0:BMP_SIZE-1) = 0_int64 ! NOTE: 0-based index. ! 65536 bits for Basic Multilingual Plane contains procedure :: bmp__add_character_range, bmp__add_character_char, bmp__add_character_codepoint generic :: add => bmp__add_character_range, bmp__add_character_char, bmp__add_character_codepoint procedure :: bmp2seg end type bmp_t