We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0e29ca commit 12bcc99Copy full SHA for 12bcc99
1 file changed
src/Data/Binary/Builder.hs
@@ -192,10 +192,12 @@ putInt32le = B.int32LE
192
-- | Write a Int64 in big endian format
193
putInt64be :: Int64 -> Builder
194
putInt64be = B.int64BE
195
+{-# INLINE putInt64be #-}
196
197
-- | Write a Int64 in little endian format
198
putInt64le :: Int64 -> Builder
199
putInt64le = B.int64LE
200
+{-# INLINE putInt64le #-}
201
202
203
------------------------------------------------------------------------
0 commit comments