This file contains hidden or 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
module Solver | |
open Board | |
// Takes a Value list in parameter and return a new list with all possible wich are duplicates of | |
// locked values removed | |
let removePossibleEntries (values:Value list) : Value list = | |
// printf "\nremovePossibleEntries entry %A" values | |
// get locked values |
This file contains hidden or 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
I would personally use the term DTO only when the Data is being transferred across layers, services or applications. | |
Wikipedia defines it as: | |
is an object that carries data between processes | |
Also this highly upvoted answer on StackOverflow says: |
OlderNewer