< Ada Programming < Libraries

Ada. Time-tested, safe and secure.
This language feature is available from Ada 95 on. Interfaces.Fortran is a unit of the Predefined Language Environment since Ada 95.
Specification
with
Ada.Numerics.Generic_Complex_Types; -- see G.1.1pragma
Elaborate_All(Ada.Numerics.Generic_Complex_Types);package
Interfaces.Fortranis
pragma
Pure(Fortran);type
Fortran_Integeris
range
implementation-defined;type
Realis
digits
implementation-defined;type
Double_Precisionis
digits
implementation-defined;type
Logicalis
new
Boolean;package
Single_Precision_Complex_Typesis
new
Ada.Numerics.Generic_Complex_Types (Real);type
Complexis
new
Single_Precision_Complex_Types.Complex;subtype
Imaginaryis
Single_Precision_Complex_Types.Imaginary; i : Imaginaryrenames
Single_Precision_Complex_Types.i; j : Imaginaryrenames
Single_Precision_Complex_Types.j;type
Character_Setis
implementation-defined charactertype
;type
Fortran_Characteris
array
(Positiverange
<>)of
Character_Setwith
Pack;function
To_Fortran (Item :in
Character)return
Character_Set;function
To_Ada (Item :in
Character_Set)return
Character;function
To_Fortran (Item :in
String)return
Fortran_Character;function
To_Ada (Item :in
Fortran_Character)return
String;procedure
To_Fortran (Item :in
String; Target :out
Fortran_Character; Last :out
Natural);procedure
To_Ada (Item :in
Fortran_Character; Target :out
String; Last :out
Natural);end
Interfaces.Fortran;
See also
Wikibook
External examples
- Search for examples of
Interfaces.Fortran
in: Rosetta Code, GitHub or this Wikibook. - Search for any post related to
Interfaces.Fortran
in: Stack Overflow, comp.lang.ada or any Ada related page.
Ada Reference Manual
Ada 95
Ada 2005
Ada 2012
Open-Source Implementations
FSF GNAT
- Specification: i-fortra.ads
- Body: i-fortra.adb
drake
- Specification: numerics/i-fortra.ads
- Body: numerics/i-fortra.adb
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.