BSD-3-Clause licensed by Yoshikuni Jujo
Maintained by [email protected]
This version can be pinned in stack with:swizzle-set-0.2.0.0@sha256:5fe7be6695d589de962d79146f1e17b0737d379ef5a3b5a27cf2656f741f73f2,2305

Module documentation for 0.2.0.0

Used by 2 packages in nightly-2025-04-02(full list with versions):

swizzle-set

{-# LANGUAGE FlexibleContexts #-}

import Data.SwizzleSet qualified as SwzS
import Data.SwizzleSet.TH

type TupInt10 = (Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)

nums :: TupInt10
nums = (0, 1, 2, 3, 4, 5, 6, 7, 8, 9)


foo :: (Int, Int, Int, String, Int, Int, Int, Int, Int, Int)
foo = SwzS.ywv (100, "hello", 300) nums -- (0, 100, 2, "hello", 300, 5, 6, 7, 8)

foo2, foo3, foo4 :: TupInt10
foo2 = SwzS.z nums 123 -- (0, 1, 123, 3, 4, 5, 6, 7, 8, 9)
foo3 = SwzS.u nums 321 -- (0, 1, 2, 3, 4, 321, 6, 7, 8, 9)
foo4 = SwzS.q nums 333 -- (0, 1, 2, 3, 4, 5, 6, 7, 8, 333)

swizzleSet "" "zvusq"

bar :: TupInt10
bar = zvusq nums (100, 200, 300, 400, 500) -- (0, 1, 100, 3, 200, 300, 6, 400, 8, 500)
import GHC.Generics
import Data.Tuple
import Data.SwizzleSet qualified as SwzS
import Data.SwizzleSet.Class

newtype Red = Red Double deriving Show
newtype Green = Green Double deriving Show
newtype Blue = Blue Double deriving Show
newtype Alpha = Alpha Double deriving Show

data Argb = Argb Alpha Red Green Blue deriving (Show, Generic)

instance SwizzleSet1 Argb Alpha where type X Argb Alpha = Argb
instance SwizzleSet2 Argb Red where type Y Argb Red = Argb
instance SwizzleSet3 Argb Green where type Z Argb Green = Argb
instance SwizzleSet4 Argb Blue where type W Argb Blue = Argb

sample :: Argb
sample = Argb (Alpha 0.5) (Red 0.9) (Green 0.3) (Blue 0.2)

lessRed :: Argb
lessRed = SwzS.y sample (Red 0.4) -- Argb (Alpha 0.5) (Red 0.4) (Green 0.3) (Blue 0.2)

lessAlphaGreen :: Argb
lessAlphaGreen = SwzS.xz sample (Alpha 0.2, Green 0.1)
	-- Argb (Alpha 0.2) (Red 0.4) (Green 0.1) (Bluye 0.2)
{-# LANGUAGE FlexibleContexts #-}

import Data.SwizzleSet.TH

swizzleSet "set" "ywuq"

sample :: (Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)
sample = setYwuq (0, 1, 2, 3, 4, 5, 6, 7, 8, 9) (100, 200, 300, 400)
	-- (0, 100, 2, 200, 4, 300, 6, 7, 8, 400)

Changes

Changelog for swizzle-set

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to the Haskell Package Versioning Policy.

Unreleased

0.1.0.0 - YYYY-MM-DD