From 09712d7374149b5f3070e05ab750314d5a21242f Mon Sep 17 00:00:00 2001 From: hyrodium Date: Sun, 30 Jul 2023 00:46:47 +0900 Subject: [PATCH] update README not to encourage type-piracy --- README.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/README.md b/README.md index 82c6912..02cd3e0 100644 --- a/README.md +++ b/README.md @@ -8,12 +8,6 @@ This package represents intervals of an ordered set. For an interval spanning from `a` to `b`, all values `x` that lie between `a` and `b` are defined as being members of the interval. -This package is intended to implement a "minimal" foundation for -intervals upon which other packages might build. In particular, we -*encourage* [type-piracy](https://docs.julialang.org/en/v1/manual/style-guide/#Avoid-type-piracy) -for the reason that only one interval package can -unambiguously define the `..` and `±` operators (see below). - Currently this package defines one concrete type, `Interval`. These define the set spanning from `a` to `b`, meaning the interval is defined as the set `{x}` satisfying `a ≤ x ≤ b`. This is