You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							31 lines
						
					
					
						
							857 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							31 lines
						
					
					
						
							857 B
						
					
					
				| // I/O of lfloats. | |
|  | |
| #ifndef _CL_LFLOAT_IO_H | |
| #define _CL_LFLOAT_IO_H | |
|  | |
| #include "cln/number_io.h" | |
| #include "cln/lfloat.h" | |
|  | |
| namespace cln { | |
| 
 | |
| inline cl_istream operator>> (cl_istream stream, cl_LF& result) | |
| { | |
| 	extern cl_read_flags cl_LF_read_flags; | |
| 	extern const cl_F read_float (cl_istream, const cl_read_flags&); | |
| 	result = As(cl_LF)(read_float(stream,cl_LF_read_flags)); | |
| 	return stream; | |
| } | |
| 
 | |
| // The following does strictly the same as the general `fprint' for floats. | |
| // It is here only so that people don't need to include <cln/float_io.h>. | |
| inline void fprint (cl_ostream stream, const cl_LF& x) | |
| { | |
| 	extern void print_float (cl_ostream stream, const cl_print_flags& flags, const cl_F& z); | |
| 	extern cl_print_flags default_print_flags; | |
| 	print_float(stream,default_print_flags,x); | |
| } | |
| CL_DEFINE_PRINT_OPERATOR(cl_LF) | |
| 
 | |
| }  // namespace cln | |
|  | |
| #endif /* _CL_LFLOAT_IO_H */
 |