Change default conc-name of with macros
author |
Steve Losh <steve@stevelosh.com> |
date |
Sun, 09 Jun 2019 11:26:44 -0400 |
parents |
28724d30efef |
children |
3b355cd31642 |
(defpackage :losh.internal
(:use :cl))
(in-package :losh.internal)
(eval-when (:compile-toplevel :load-toplevel :execute)
(defun external-symbols (package)
(let ((symbols nil))
(do-external-symbols (s (find-package package) symbols)
(push s symbols)))))
(defmacro defpackage-inheriting (name parent-packages &rest args)
`(defpackage ,name
,@args
,@(loop :for parent-package :in parent-packages
:collect `(:use ,parent-package)
:collect `(:export ,@(external-symbols parent-package)))))
(defpackage :losh.chili-dogs
(:use :cl :iterate :losh.quickutils)
(:documentation "Gotta go FAST.")
(:export
:defun-inline
:defun-inlineable))
(defpackage :losh.clos
(:use :cl :iterate :losh.quickutils)
(:documentation "Utilities for working with CLOS.")
(:export
:defclass*))
(defpackage :losh.eldritch-horrors
(:use :cl :iterate :losh.quickutils)
(:documentation "Abandon all hope, ye who enter here.")
(:export
:eval-dammit
:define-with-macro))
(defpackage :losh.functions
(:use :cl :iterate :losh.quickutils)
(:documentation "Utilities for working with higher-order functions.")
(:export
:juxt
:nullary
:fixed-point))
(defpackage :losh.hash-sets
(:use :cl :iterate :losh.quickutils)
(:documentation "Simple hash set implementation.")
(:export
:hash-set
:make-hash-set
:copy-hash-set
:hset-empty-p
:hset-contains-p
:hset-elements
:hset-count
:hset-insert!
:hset-remove!
:hset-pop!
:hset-clear!
:hset=
:hset-union
:hset-union!
:hset-intersection
:hset-intersection!
:hset-difference
:hset-difference!
:hset-filter
:hset-filter!
:hset-map
:hset-map!
:hset-reduce))
(defpackage :losh.io
(:use :cl :iterate :losh.quickutils)
(:documentation "Utilities for input/output/reading/etc.")
(:export
:read-all
:read-all-from-file
:read-all-from-string))
(defpackage :losh.lists
(:use :cl :iterate :losh.quickutils)
(:documentation "Utilities for operating on lists.")
(:export
:somelist))
(defpackage :losh.mutation
(:use :cl :iterate :losh.quickutils)
(:documentation "Utilities for mutating places in-place.")
(:export
:zapf
:%
:mulf
:divf
:modf
:remainderf
:clampf
:negatef
:notf
:callf))
(defpackage :losh.iterate-pre
(:use :cl :iterate :losh.quickutils)
(:export
:in-whatever))
(defpackage :losh.arrays
(:use :cl :iterate :losh.quickutils
:losh.chili-dogs)
(:documentation "Utilities related to arrays.")
(:export
:do-array
:bisect-left
:bisect-right
:fill-multidimensional-array
:fill-multidimensional-array-t
:fill-multidimensional-array-fixnum
:fill-multidimensional-array-single-float
:vector-last))
(defpackage :losh.bits
(:use :cl :iterate :losh.quickutils
:losh.chili-dogs)
(:documentation "Utilities for low-level bit stuff.")
(:export
:+/8
:-/8
:+/16
:-/16
:+/32
:-/32
:+/64
:-/64))
(defpackage :losh.queues
(:use :cl :iterate :losh.quickutils
:losh.chili-dogs)
(:documentation "A simple queue implementation.")
(:export
:queue
:make-queue
:queue-contents
:queue-size
:queue-empty-p
:enqueue
:dequeue
:queue-append))
(defpackage :losh.priority-queues
(:use :cl :iterate :losh.quickutils
:losh.mutation)
(:documentation "Jankass priority queue implementation.")
(:export
:priority-queue
:make-priority-queue
:pq-insert
:pq-ensure
:pq-dequeue))
(defpackage :losh.control-flow
(:use :cl :iterate :losh.quickutils
:losh.queues)
(:documentation "Utilities for managing control flow.")
(:export
:-<>
:<>
:nest
:recursively
:recur
:when-found
:if-found
:gathering
:gathering-vector
:gather
:if-let
:if-let*
:when-let
:when-let*
:multiple-value-bind*
:do-repeat
:do-range
:do-irange))
(defpackage :losh.math
(:use :cl :iterate :losh.quickutils
:losh.chili-dogs
:losh.control-flow)
(:documentation "Utilities related to math and numbers.")
(:export
:tau
:tau/2
:1/2tau
:tau/4
:1/4tau
:2/4tau
:3/4tau
:tau/8
:1/8tau
:2/8tau
:3/8tau
:4/8tau
:5/8tau
:6/8tau
:7/8tau
:clamp
:degrees
:dividesp
:in-range-p
:lerp
:map-range
:norm
:precise-lerp
:radians
:square
:digit))
(defpackage :losh.hash-tables
(:use :cl :iterate :losh.quickutils
:losh.control-flow)
(:documentation "Utilities for operating on hash tables.")
(:export
:hash-table-contents
:mutate-hash-values
:remhash-if
:remhash-if-not
:remhash-if-key
:remhash-if-not-key
:remhash-if-value
:remhash-if-not-value))
(defpackage :losh.random
(:use :cl :iterate :losh.quickutils
:losh.chili-dogs
:losh.math)
(:documentation "Utilities related to randomness.")
(:export
:randomp
:random-elt
:random-range
:random-range-exclusive
:random-range-inclusive
:random-around
:random-gaussian
:random-gaussian-integer
:d))
(defpackage :losh.sequences
(:use :cl :iterate :losh.quickutils
:losh.chili-dogs
:losh.functions
:losh.hash-tables
:losh.iterate-pre
:losh.mutation)
(:documentation "Utilities for operating on sequences.")
(:export
:extrema
:enumerate
:prefix-sums
:frequencies
:proportions
:group-by
:take
:take-while
:drop
:drop-while
:summation
:product
:doseq
:string-join))
(defpackage :losh.debugging
(:use :cl :iterate :losh.quickutils
:losh.math
:losh.control-flow
:losh.hash-tables)
(:documentation "Utilities for figuring out what the hell is going on.")
(:export
#+sbcl :profile
#+sbcl :start-profiling
#+sbcl :stop-profiling
:aesthetic-string
:bits
:comment
:dis
:gimme
:hex
:pr
:pretty-print-hash-table
:print-table
:prl
:shut-up
:structural-string
))
(defpackage :losh.gnuplot
(:use :cl :iterate :losh.quickutils
:losh.control-flow
:losh.debugging
:losh.sequences)
(:documentation "Utilities for plotting data with gnuplot.")
(:export
:gnuplot
:gnuplot-args
:gnuplot-function
:gnuplot-histogram))
(defpackage :losh.iterate
(:use :cl :iterate :losh.quickutils
:losh.iterate-pre
:losh.hash-sets
:losh.control-flow ;; always needed because we need a single RECURSIVELY symbol
:losh.sequences)
(:documentation "Custom `iterate` drivers and clauses.")
(:export
:across-flat-array
:anding
:averaging
:collect-hash
:collect-set
:cycling
:every-nth
:finding-all
:for-nested
:in-array
:in-hashset
:in-lists
:in-sequences
:in-whatever
:index-of-flat-array
:initially
:into
:macroexpand-iterate
:modulo
:oring
:pairs-of-list
:per-iteration-into
:real-time
:recursively
:run-time
:seed
:since-start-into
:skip-origin
:test
:then
:timing
:within-radius
))
(defpackage :losh.weightlists
(:use :cl :iterate :losh.quickutils
:losh.sequences)
(:documentation
"A simple data structure for choosing random items with weighted probabilities.")
(:export
:weightlist
:weightlist-weights
:weightlist-items
:make-weightlist
:weightlist-random))
(defpackage-inheriting :losh
(
:losh.arrays
:losh.bits
:losh.chili-dogs
:losh.clos
:losh.control-flow
:losh.debugging
:losh.eldritch-horrors
:losh.functions
:losh.gnuplot
:losh.hash-sets
:losh.hash-tables
:losh.io
:losh.iterate
:losh.lists
:losh.math
:losh.mutation
:losh.priority-queues
:losh.queues
:losh.random
:losh.sequences
:losh.weightlists
)
(:use
:cl
:iterate
:losh.quickutils)
(:documentation
"This package exports all of the symbols in the other packages.
If you just want to get everything you can `:use` this one and be done with
it. Otherwise you can `:use` only the ones you need.
"))
;;;; Remember to add it to the docs!