├── .gitignore ├── .travis.yml ├── ChangeLog.md ├── Data ├── IORef │ └── Unboxed.hs └── STRef │ ├── Unboxed.hs │ └── Unboxed │ └── Internal.hs ├── LICENSE ├── Main.hs ├── README.md ├── Setup.hs ├── bench ├── ChangeLog.md ├── IORef.Atomic.hs ├── IORef.hs ├── IORefU.Atomic.hs ├── IORefU.hs ├── LICENSE ├── Setup.hs └── bench.cabal ├── test └── Main.hs └── unboxed-ref.cabal /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winterland1989/unboxed-ref/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winterland1989/unboxed-ref/HEAD/.travis.yml -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winterland1989/unboxed-ref/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /Data/IORef/Unboxed.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winterland1989/unboxed-ref/HEAD/Data/IORef/Unboxed.hs -------------------------------------------------------------------------------- /Data/STRef/Unboxed.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winterland1989/unboxed-ref/HEAD/Data/STRef/Unboxed.hs -------------------------------------------------------------------------------- /Data/STRef/Unboxed/Internal.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winterland1989/unboxed-ref/HEAD/Data/STRef/Unboxed/Internal.hs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winterland1989/unboxed-ref/HEAD/LICENSE -------------------------------------------------------------------------------- /Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winterland1989/unboxed-ref/HEAD/Main.hs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winterland1989/unboxed-ref/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /bench/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winterland1989/unboxed-ref/HEAD/bench/ChangeLog.md -------------------------------------------------------------------------------- /bench/IORef.Atomic.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winterland1989/unboxed-ref/HEAD/bench/IORef.Atomic.hs -------------------------------------------------------------------------------- /bench/IORef.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winterland1989/unboxed-ref/HEAD/bench/IORef.hs -------------------------------------------------------------------------------- /bench/IORefU.Atomic.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winterland1989/unboxed-ref/HEAD/bench/IORefU.Atomic.hs -------------------------------------------------------------------------------- /bench/IORefU.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winterland1989/unboxed-ref/HEAD/bench/IORefU.hs -------------------------------------------------------------------------------- /bench/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winterland1989/unboxed-ref/HEAD/bench/LICENSE -------------------------------------------------------------------------------- /bench/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /bench/bench.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winterland1989/unboxed-ref/HEAD/bench/bench.cabal -------------------------------------------------------------------------------- /test/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winterland1989/unboxed-ref/HEAD/test/Main.hs -------------------------------------------------------------------------------- /unboxed-ref.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winterland1989/unboxed-ref/HEAD/unboxed-ref.cabal --------------------------------------------------------------------------------