mask_get_size Function

private pure function mask_get_size(this) result(size)

Get the size of the mask

@param[in] this The boolean mask instance @return size The size of the mask

Type Bound

boolean_mask

Arguments

Type IntentOptional Attributes Name
class(boolean_mask), intent(in) :: this

Return Value integer


Source Code

    pure function mask_get_size(this) result(size)
        class(boolean_mask), intent(in) :: this
        integer :: size
        size = this % size
    end function mask_get_size