|
|
|
|
|
by neilparikh
2196 days ago
|
|
What about genetics for phantom types? Ex. class ID<T> {
int id;
}
The idea is that an ID is just an int under the hood, but ID<User> and ID<Post> are different types so you can’t accidentally pass in a user id where a post is is expected.Now, this is just a simple example that probably won’t catch too many bugs, but you can do more useful things like have a phantom parameter to represent if the data is sanitized, and then make sure that only sanitized strings are displayed. |
|