rxada_0.1.1_dd9da799/src/priv/rx-src-empty.ads

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
with Ada.Exceptions;

with Rx.Errors;
with Rx.Impl.Typed;

generic
   with package Typed is new Rx.Impl.Typed (<>);
package Rx.Src.Empty is

   function Empty return Typed.Observable;

   function Never return Typed.Observable;

   function Error (E : Rx.Errors.Occurrence)                return Typed.Observable;
   function Error (E : Ada.Exceptions.Exception_Occurrence) return Typed.Observable;

end Rx.Src.Empty;