AUnit.IO

More...

Entities

Access types

File_Access
File_Type

Subprograms

New_Line
Put
Put
Put_Line
Standard_Output

Description

File_Access [source]

39 subtype File_Access is Ada.Text_IO.File_Access;

File_Type [source]

37 subtype File_Type is Ada.Text_IO.File_Type;

New_Line [source]

56 procedure New_Line (File : File_Type;
57 Spacing : Ada.Text_IO.Positive_Count := 1) renames Ada.Text_IO.New_Line;
File of type AUnit.IO.File_Type
Spacing of type Positive_Count

Put [source]

44 procedure Put (File : File_Type;
45 Item : Integer;
46 Width : Ada.Text_IO.Field := Ada.Integer_Text_IO.Default_Width;
47 Base : Ada.Text_IO.Number_Base := Ada.Integer_Text_IO.Default_Base)
48 renames Ada.Integer_Text_IO.Put;
File of type AUnit.IO.File_Type
Item of type Integer
Width of type Field
Base of type Number_Base

Put [source]

50 procedure Put (File : File_Type;
51 Item : String) renames Ada.Text_IO.Put;
File of type AUnit.IO.File_Type
Item of type String

Put_Line [source]

53 procedure Put_Line (File : File_Type;
54 Item : String) renames Ada.Text_IO.Put_Line;
File of type AUnit.IO.File_Type
Item of type String

Standard_Output [source]

41 function Standard_Output
42 return File_Access renames Ada.Text_IO.Standard_Output;