Created
January 30, 2015 23:32
-
-
Save chadaustin/bb9a7134bc6743aa6c6c to your computer and use it in GitHub Desktop.
This file contains hidden or 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
grow :: (# State# RealWorld, Buffer# #) -> (# State# RealWorld, Buffer# #) | |
grow (# s0, (# _, size, cap, _ #) #) = | |
let newCap# = cap *# 2# in | |
let (IO iorep) = mallocForeignPtrBytes (I# newCap#) in | |
case iorep s0 of { | |
(# s1, fp@(ForeignPtr addr# _) #) -> (# s1, (# addr#, size, newCap#, fp #) #) } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment