complex16_container Derived Type

type, public, extends(container) :: complex16_container

type~~complex16_container~~InheritsGraph type~complex16_container complex16_container type~container container type~container->type~complex16_container
Help


A container for holding the 16 byte complex type.


Type-Bound Procedures

procedure, private :: typeguard => complex16_guard

  • private function complex16_guard(this, lhs) result(ret)

    Arguments

    Type IntentOptional AttributesName
    class(complex16_container), intent(in) :: this
    class(*), intent(inout) :: lhs

    Return Value logical

    Description

    Author
    Chris MacMackin
    Date
    December 2015

    Transfers the container's contents to the variable on the left hand side of the equals sign if it is of the correct type.

Source Code

  type, extends(container) ::  complex16_container
    !! Author: Chris MacMackin
    !! Date: December 2015
    !!
    !! A container for holding the 16 byte complex type.
  contains
    private
    procedure   ::  typeguard => complex16_guard
  end type complex16_container