check() public method

public check ( ) : bool
return bool
Exemplo n.º 1
0
 static bool large_struct_test(Large a, Large b, Large c, Large d)
 {
     if (!a.check())
     {
         return(false);
     }
     if (!b.check())
     {
         return(false);
     }
     if (!c.check())
     {
         return(false);
     }
     if (!d.check())
     {
         return(false);
     }
     return(true);
 }
Exemplo n.º 2
0
	static bool large_struct_test (Large a, Large b, Large c, Large d)
	{
		if (!a.check ()) return false;
		if (!b.check ()) return false;
		if (!c.check ()) return false;
		if (!d.check ()) return false;
		return true;
	}