swizzle-set: Swizzle set functions

[ bsd3, data, library ] [ Propose Tags ] [ Report a vulnerability ]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0.0, 0.2.0.0
Change log CHANGELOG.md
Dependencies base (>=4.7 && <5), template-haskell (<3) [details]
License BSD-3-Clause
Copyright (c) 2025 Yoshikuni Jujo
Author Yoshikuni Jujo
Maintainer yoshikuni.jujo@gmail.com
Category Data
Home page https://github.com/YoshikuniJujo/swizzle-set#readme
Bug tracker https://github.com/YoshikuniJujo/swizzle-set/issues
Source repo head: git clone https://github.com/YoshikuniJujo/swizzle-set
Uploaded by YoshikuniJujo at 2025-01-23T06:21:08Z
Distributions Stackage:0.2.0.0
Reverse Dependencies 2 direct, 0 indirect [details]
Downloads 39 total (39 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2025-01-23 [all 1 reports]

Readme for swizzle-set-0.2.0.0

[back to package description]

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)