]> git.llucax.com Git - z.facultad/75.00/informe.git/blobdiff - source/d.rst
Mencionar ionice(1) en la metodología de pruebas
[z.facultad/75.00/informe.git] / source / d.rst
index 10c220e16f00a97aecc986693b670107bf09df57..426a800a2babbc23cf574855c1469c3c73f3c403 100644 (file)
@@ -274,12 +274,14 @@ Iteración sobre colecciones (``foreach``)
 
       Ejemplo de especialización::
 
+         T sumar(T)(T x, T y)      { return x + y; }
          T sumar(T: int)(T x, T y) { return x + y + 1; }
          auto i = sumar(5, 6);         // i == 12
          auto f = sumar(5.0f, 6.0f) // f == 11.0f
 
       Ejemplo de especialización parcial::
 
+         T sumar(T)(T x, T y)     { return x + y; }
          T sumar(T: T*)(T x, T y) { return *x + *y; }
          int x = 5, y = 6;
          auto i = sumar(&x, &y); // i == 11