This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Mi queridísima Jacinta, | |
Ha sido capaz usted, con sus sencillas y bonitas cartas, de emocionar a este hombre y hacerle sentir como si estuviera flotando sobre las nubes. ¿Sabía usted que tiene una belleza tremenda, una sonrisa pura y deliciosa que podría derretir a cualquier hombre? Le doy mil gracias y aún más por permitirme soñar con usted. ¿Cómo es posible sentir estas cosas, con tan poco que nos conocemos pero con una conexión tan fuerte ya? ¿Ya sabe bien hasta qué profundidad me ha cautivado? Ojos que me atrapan en su mirada, una sonrisa que me llena el alma entera con felicidad y bien estar. ¿Se ha dado cuenta usted que me tiene ya rendido a sus pies? | |
¿Me pregunto cómo un hombre como yo, humilde y sencillo en sus pensamientos, sin riquezas ni fama, puede tener la suerte de haber capturado la atención de una mujer tan bella y estimada? La vida me arrastra con bruteza, mis momentos de felicidad no duran apenas tiempo sin que el destino me los quite. Ahora encuentro en mi camino una joya, algo que brilla |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace Exceptions | |
open System | |
module ExceptionTypes = | |
// TryResult, used to pass results or exception as values. | |
type TryResult<'r, 'e> = | |
| Result of 'r | |
| Error of 'e :> Exception |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.github.martincooper.datatable.TypedDataValueImplicits._ | |
val matchingRow = table.find(row => row.as[Int]("FieldId") == 1000) | |
val newTable = matchingRow match { | |
case Some(row) => table.rows.replace(row.rowIndex, "NewValue", 100, 5.5d, true) | |
case _ => Success(table) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
val matchingRow = table.find(row => row.as[Int]("FieldId") == 1234) | |
val newTable = matchingRow match { | |
case Some(row) => table.rows.remove(row) | |
case _ => Success(table) | |
} |