-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename to float-decimal and decimal-float
- Loading branch information
Showing
6 changed files
with
25 additions
and
13 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
;;;; SPDX-FileCopyrightText: Copyright (c) 2024 s-expressionists | ||
;;;; SPDX-License-Identifier: MIT AND BSD-3-Clause | ||
;;;; | ||
;;;; The implementations of QUAVIVER:BITS-FLOAT and QUAVIVER:FLOAT-BITS | ||
;;;; were ported, with modifications, from Nibbles [1], which is | ||
;;;; licensed under the BSD-3-Clause license. | ||
;;;; Any original code herein is licensed under the MIT license (Expat). | ||
;;;; | ||
;;;; [1]: https://github.com/sharplispers/nibbles | ||
|
||
(cl:defpackage #:quaviver/ieee754 | ||
(:use #:common-lisp) | ||
(:export #:client)) |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
(defpackage #:quaviver | ||
(:use #:common-lisp) | ||
(:shadow #:float-digits) | ||
(:export #:bits-float | ||
#:float-bits | ||
#:digits-float | ||
#:float-digits)) | ||
#:decimal-float | ||
#:float-decimal)) |
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