forgex_bitmap_m Module



Derived Types

type, public ::  ascii_t

Components

Type Visibility Attributes Name Initial
integer(kind=int64), public :: a(0:ASCII_SIZE-1) = 0_int64

Type-Bound Procedures

generic, public :: add => ascii__add_character_range, ascii__add_character_char, ascii__add_character_codepoint
procedure, public :: ascii2seg
procedure, public :: ascii__add_character_char
procedure, public :: ascii__add_character_codepoint
procedure, public :: ascii__add_character_range

type, public ::  bmp_t

Components

Type Visibility Attributes Name Initial
integer(kind=int64), public :: b(0:BMP_SIZE-1) = 0_int64

Type-Bound Procedures

generic, public :: add => bmp__add_character_range, bmp__add_character_char, bmp__add_character_codepoint
procedure, public :: bmp2seg
procedure, public :: bmp__add_character_char
procedure, public :: bmp__add_character_codepoint
procedure, public :: bmp__add_character_range

Subroutines

private pure subroutine ascii2seg(self, segments)

Arguments

Type IntentOptional Attributes Name
class(ascii_t), intent(in) :: self
type(segment_t), intent(inout), allocatable :: segments(:)

private pure subroutine ascii__add_character_char(self, chara)

Arguments

Type IntentOptional Attributes Name
class(ascii_t), intent(inout) :: self
character(len=1), intent(in) :: chara

private pure subroutine ascii__add_character_codepoint(self, cp)

Arguments

Type IntentOptional Attributes Name
class(ascii_t), intent(inout) :: self
integer(kind=int32), intent(in) :: cp

private pure subroutine ascii__add_character_range(self, min_cp, max_cp)

Arguments

Type IntentOptional Attributes Name
class(ascii_t), intent(inout) :: self
integer(kind=int32), intent(in) :: min_cp
integer(kind=int32), intent(in) :: max_cp

private pure subroutine bmp2seg(self, segments)

Arguments

Type IntentOptional Attributes Name
class(bmp_t), intent(in) :: self
type(segment_t), intent(inout), allocatable :: segments(:)

private pure subroutine bmp__add_character_char(self, chara)

Arguments

Type IntentOptional Attributes Name
class(bmp_t), intent(inout) :: self
character(len=*), intent(in) :: chara

private pure subroutine bmp__add_character_codepoint(self, cp)

Arguments

Type IntentOptional Attributes Name
class(bmp_t), intent(inout) :: self
integer(kind=int32), intent(in) :: cp

private pure subroutine bmp__add_character_range(self, min_cp, max_cp)

Arguments

Type IntentOptional Attributes Name
class(bmp_t), intent(inout) :: self
integer(kind=int32), intent(in) :: min_cp
integer(kind=int32), intent(in) :: max_cp