sfp64Stack Derived Type

type, public, extends(feqparse_floatstack) :: sfp64Stack


Contents

Source Code


Components

TypeVisibilityAttributesNameInitial
real(kind=real64), public, allocatable:: tokens(:)
integer, public :: top_index

Finalization Procedures

final :: Finalize_sfp64Stack


Type-Bound Procedures

procedure, public :: Construct => Construct_sfp64Stack

  • public subroutine Construct_sfp64Stack(stack, N)

    Arguments

    TypeIntentOptionalAttributesName
    class(sfp64Stack), intent(out) :: stack
    integer, intent(in) :: N

procedure, public :: Pop => Pop_sfp64Stack

  • public subroutine Pop_sfp64Stack(stack, tok)

    Arguments

    TypeIntentOptionalAttributesName
    class(sfp64Stack), intent(inout) :: stack
    real(kind=real64), intent(out) :: tok

procedure, public :: Push => Push_sfp64Stack

  • public subroutine Push_sfp64Stack(stack, tok)

    Arguments

    TypeIntentOptionalAttributesName
    class(sfp64Stack), intent(inout) :: stack
    real(kind=real64), intent(in) :: tok

Source Code

  type,extends(feqparse_floatstack) :: sfp64Stack
    real(real64),allocatable :: tokens(:)

  contains

    procedure :: Construct => Construct_sfp64Stack
    final :: Finalize_sfp64Stack
    procedure :: Push => Push_sfp64Stack
    procedure :: Pop => Pop_sfp64Stack

  endtype sfp64Stack